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

Skip to content
Snippets Groups Projects
Commit 92daa920 authored by zzz's avatar zzz
Browse files

add dependency to get the version number right in the wrapper log

parent f7ee11cb
No related branches found
No related tags found
No related merge requests found
......@@ -22,9 +22,17 @@
</classpath>
</depend>
</target>
<target name="dependVersion">
<!-- Force the dependency on the RouterVersion as depend doesn't recognize constant changes -->
<dependset>
<srcfilelist dir="." files="build/obj/net/i2p/router/RouterVersion.class" />
<targetfilelist dir="." files="build/obj/net/i2p/router/Router.class" />
<targetfilelist dir="." files="build/obj/net/i2p/router/StatisticsManager.class" />
</dependset>
</target>
<!-- only used if not set by a higher build.xml -->
<property name="javac.compilerargs" value="" />
<target name="compile" depends="depend">
<target name="compile" depends="depend, dependVersion">
<mkdir dir="./build" />
<mkdir dir="./build/obj" />
<javac srcdir="./src" debug="true" source="1.5" target="1.5" deprecation="on" destdir="./build/obj" classpath="../../core/java/build/i2p.jar" >
......
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