move jrobin from routerconsole.jar to its own jar

This commit is contained in:
zzz
2010-02-06 20:48:14 +00:00
parent 505d5f5cae
commit 040f3e016e
2 changed files with 7 additions and 1 deletions

View File

@ -64,13 +64,15 @@
<target name="jar" depends="compile">
<jar destfile="./build/routerconsole.jar" basedir="./build/obj" includes="**/*.class">
<manifest>
<attribute name="Class-Path" value="i2p.jar router.jar" />
<attribute name="Class-Path" value="i2p.jar router.jar jrobin-1.4.0.jar" />
</manifest>
</jar>
<delete dir="./tmpextract" />
<!-- jrobin taken out of routerconsole.jar in 0.7.12
<unjar src="../../jrobin/jrobin-1.4.0.jar" dest="./tmpextract" />
<jar destfile="./build/routerconsole.jar" basedir="./tmpextract" update="true" />
<delete dir="./tmpextract" />
-->
<ant target="war" />