Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed May 30, 2020
1 parent e58a488 commit 3a96e1a
Show file tree
Hide file tree
Showing 11 changed files with 353 additions and 245 deletions.
30 changes: 14 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,13 @@

Many Utilities

## Contents
## 💖 Contents

### Adaptive I/O Stream

to be promoted to vavi-commons

### Mime Utility
### 💜 Mime Utility

to be deprecated

### Ant Tasks
### 💜 Ant Tasks

to be deprecated

Expand All @@ -23,26 +19,28 @@ to be deprecated
* InOut
* iAppli pak

### Java Parser
### 💜 Java Parser

to be deprecated

### Utility
### 💜 Utility

* Japanese Holiday
* Password Field
* Singleton

## GNU Diff
### 💜 GNU Diff

## XML
### 💜 XML

## Instrumentation
### 💜 Ansi Color

to be promoted to vavi-commons
### 💜 Grep

## Ansi Color
to be deprecated

## Grep
### 💜 Dynamic Morphism

to be deprecated
### TODO

* regex find group iteration
73 changes: 0 additions & 73 deletions build.xml

This file was deleted.

20 changes: 0 additions & 20 deletions local.properties.sample

This file was deleted.

50 changes: 18 additions & 32 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,22 @@

<groupId>vavi</groupId>
<artifactId>vavi-commons-sandbox</artifactId>
<name>Vavi Commons Sandbox API</name>
<version>0.3.5</version>
<version>0.4.0</version>

<name>Vavi Commons Sandbox API</name>
<organization>
<name></name>
</organization>
<url>https://github.com/umjammer/vavi-commons-sandbox</url>
<description>0.3.4
<description>0.4.0

promote instrumentation, engineering io into main stream

0.3.5

maintenance version

0.3.4

change diff package name
update instrumentation
Expand Down Expand Up @@ -108,31 +116,15 @@ TODO
</archive>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<jar jarfile="vavi-instrumentation.jar" manifest="src/test/resources/manifest.mf">
<fileset dir="target/classes">
<include name="vavix/lang/instrumentation/*Instrumentation.class" />
<include name="vavix/lang/instrumentation/*ClassFileTransformer*.class" />
</fileset>
</jar>
</target>
</configuration>
</execution>
</executions>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<argLine>-Djava.util.logging.config.file=${project.build.testOutputDirectory}/logging.properties</argLine>
<trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
-->
</plugins>
</build>

Expand All @@ -147,18 +139,13 @@ TODO
<dependency>
<groupId>com.github.umjammer</groupId>
<artifactId>vavi-commons</artifactId>
<version>1.0.13</version>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils-core</artifactId>
<version>1.8.3</version>
</dependency>
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.8.0.GA</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
Expand Down Expand Up @@ -190,5 +177,4 @@ TODO
<scope>test</scope>
</dependency>
</dependencies>

</project>
58 changes: 0 additions & 58 deletions readme.html

This file was deleted.

10 changes: 5 additions & 5 deletions src/main/java/vavix/io/BufferOverflowException.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
* See LICENSE.txt for details.
*/
package vavix.io;

import java.io.IOException;

/**
* An indication that there was a buffer overflow.
*
* @author Stephen Ostermiller http://ostermiller.org/contact.pl?regarding=Java+Utilities
* @since ostermillerutils 1.00.00
*/
public class BufferOverflowException extends IOException {

/**
* Serial version ID
*/
private static final long serialVersionUID = -322401823167626048L;

/**
* Create a new Exception
*
Expand All @@ -40,7 +40,7 @@ public class BufferOverflowException extends IOException {
public BufferOverflowException(){
super();
}

/**
* Create a new Exception with the given message.
*
Expand Down
Loading

0 comments on commit 3a96e1a

Please sign in to comment.