Author: nextgens
Date: 2006-09-01 14:47:33 +0000 (Fri, 01 Sep 2006)
New Revision: 10316
Modified:
trunk/plugins/build.xml
Log:
tweak the ant buildfile for plugins
Modified: trunk/plugins/build.xml
===================================================================
--- trunk/plugins/build.xml 2006-09-01 14:41:27 UTC (rev 10315)
+++ trunk/plugins/build.xml 2006-09-01 14:47:33 UTC (rev 10316)
@@ -4,6 +4,7 @@
<project name="Freenet" default="dist" basedir=".">
<property name="freenet-cvs-snapshot.location"
location="/home/svn-build/freenet-alpha.jar"/>
<property name="freenet-ext.location"
location="/var/www/downloads/alpha/freenet-ext.jar"/>
+ <property name="source-version" value="1.4"/>
<property name="build" location="build/"/>
<property name="dist" location="dist/"/>
@@ -21,7 +22,7 @@
<!-- Create the build directory structure used by compile -->
<!-- FIXME: remove the debug and replace with optimize -->
- <javac srcdir="${what}/" destdir="${build}" debug="on" optimize="on"
source="1.4">
+ <javac srcdir="${what}/" destdir="${build}" debug="on" optimize="on"
source="${source-version}">
<classpath>
<pathelement location="${freenet-ext.location}"/>
<pathelement location="${freenet-cvs-snapshot.location}"/>