diff options
author | jestin | 2002-03-07 14:35:42 +0000 |
---|---|---|
committer | jestin | 2002-03-07 14:35:42 +0000 |
commit | f6f19c3a8e90341b90abf0bbd34775996c6d9ed1 (patch) | |
tree | 99eedb0ca7c5aaa166336aae77098cadf66fb26d /src | |
parent | 92fec88fa15b95a0dcd834f40797707e4a1717d3 (diff) | |
download | ivy-java-f6f19c3a8e90341b90abf0bbd34775996c6d9ed1.zip ivy-java-f6f19c3a8e90341b90abf0bbd34775996c6d9ed1.tar.gz ivy-java-f6f19c3a8e90341b90abf0bbd34775996c6d9ed1.tar.bz2 ivy-java-f6f19c3a8e90341b90abf0bbd34775996c6d9ed1.tar.xz |
1.0.9 and automatic hanlding of documentation
Diffstat (limited to 'src')
-rwxr-xr-x | src/Ivy.java | 2 | ||||
-rw-r--r-- | src/Makefile | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/Ivy.java b/src/Ivy.java index 06d27bf..fe11428 100755 --- a/src/Ivy.java +++ b/src/Ivy.java @@ -43,7 +43,7 @@ public class Ivy implements Runnable, IvyApplicationListener { /** * the library version */ - public static String libVersion ="1.0.8"; + public static String libVersion ="1.0.9"; private boolean debug; private static int serial=0; /* an unique ID for each regexp */ diff --git a/src/Makefile b/src/Makefile index 611049a..fbd2ffb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3,7 +3,7 @@ JAVACOPTS = -d . -deprecation $(CLASSPATH) SRCS = *.java JAR = ../lib/Ivy.jar - VER = 1.0.8 + VER = 1.0.9 DIST = ../lib/ivy-java-$(VER).jar JAVAC = jikes # JAVAC = javac @@ -27,6 +27,8 @@ dist: fastjar cvfm $(DIST) ../manifest fr src debian redhat doc Makefile manifest TODO docs: - rm -fR $(DOCS)/* + rm -fR $(DOCS)/*html + rm -fR $(DOCS)/*css + rm -fR $(DOCS)/fr javadoc -d $(DOCS) $(SRCS) rm $(DOCS)/package-list |