added source and target declarations for the javac commands so we can build with the 1.5^W5.0 JDK

(also added deprecation, since, well, we can :)
This commit is contained in:
jrandom
2004-07-11 04:16:59 +00:00
committed by zzz
parent eb0e187a54
commit 3bc0e0fc8a
11 changed files with 13 additions and 13 deletions

View File

@ -8,7 +8,7 @@
<target name="compile">
<mkdir dir="./build" />
<mkdir dir="./build/obj" />
<javac srcdir="./src:./test" debug="true" destdir="./build/obj" classpath="../../core/java/build/i2p.jar" />
<javac srcdir="./src:./test" debug="true" target="1.1" source="1.3" deprecation="on" destdir="./build/obj" classpath="../../core/java/build/i2p.jar" />
</target>
<target name="jar" depends="compile">
<jar destfile="./build/router.jar" basedir="./build/obj" includes="**/*.class" />