I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 7f58a68c authored by ragnarok's avatar ragnarok Committed by zzz
Browse files

Whoops! Forgot the new build file. I broke cvs!

parent 8120b039
No related branches found
No related tags found
No related merge requests found
...@@ -6,8 +6,7 @@ ...@@ -6,8 +6,7 @@
<property name="dist" location="dist"/> <property name="dist" location="dist"/>
<property name="jar" value="addressbook.jar"/> <property name="jar" value="addressbook.jar"/>
<property name="war" value="addressbook.war"/> <property name="war" value="addressbook.war"/>
<property name="servlet" value="../jetty/jettylib/javax.servlet.jar"/>
<target name="init"> <target name="init">
<mkdir dir="${build}"/> <mkdir dir="${build}"/>
<mkdir dir="${dist}"/> <mkdir dir="${dist}"/>
...@@ -22,7 +21,12 @@ ...@@ -22,7 +21,12 @@
<target name="compile" depends="init"> <target name="compile" depends="init">
<javac debug="true" deprecation="on" source="1.3" target="1.3" <javac debug="true" deprecation="on" source="1.3" target="1.3"
srcdir="${src}" destdir="${build}" classpath="${servlet}"/> srcdir="${src}" destdir="${build}">
<classpath>
<pathelement location="../../core/java/build/i2p.jar" />
<pathelement location="../jetty/jettylib/javax.servlet.jar" />
</classpath>
</javac>
</target> </target>
<target name="jar" depends="compile"> <target name="jar" depends="compile">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment