Author: nextgens
Date: 2008-08-18 09:30:30 +0000 (Mon, 18 Aug 2008)
New Revision: 21991
Modified:
trunk/contrib/freenet_ext/build.xml
Log:
freenet-ext.jar: make it use 1.5
Modified: trunk/contrib/freenet_ext/build.xml
===================================================================
--- trunk/contrib/freenet_ext/build.xml 2008-08-18 09:16:16 UTC (rev 21990)
+++ trunk/contrib/freenet_ext/build.xml 2008-08-18 09:30:30 UTC (rev 21991)
@@ -15,7 +15,7 @@
<replace file="ExtVersion.java">
<replacefilter token="@custom@"
value="${svn.revision}"/>
</replace>
- <javac srcdir="." destdir="${build}" optimize="on" source="1.4">
+ <javac srcdir="." destdir="${build}" optimize="on" source="1.5">
<include name="ExtVersion.java"/>
</javac>
</target>
@@ -25,7 +25,7 @@
</target>
<target name="fec" depends="fec-common" description="build the
fecencoder/decoder plugins for fproxy.">
- <javac destdir="${build}" optimize="on" source="1.4">
+ <javac destdir="${build}" optimize="on" source="1.5">
<src path="../fec/fec_src"/>
<classpath path="../fec/common/lib/onion-common.jar"/>
<classpath path="../junit"/>
@@ -61,7 +61,7 @@
</target>
<target name="bdb" depends="init" description="Build the BDB provider">
- <ant antfile="build.xml" dir="../bdb/"/>
+ <ant antfile="build.xml" dir="../bdb/" target="jar"/>
</target>
<target name="wrapper" depends="init" description="Build the java
wrapper">