aboutsummaryrefslogtreecommitdiff
path: root/common.xml
diff options
context:
space:
mode:
authorlimpbizkit <limpbizkit@d779f126-a31b-0410-b53b-1d3aecad763e>2008-11-23 03:04:18 +0000
committerlimpbizkit <limpbizkit@d779f126-a31b-0410-b53b-1d3aecad763e>2008-11-23 03:04:18 +0000
commit8bb742a135e821d4c05b6997cedb438aa3694da4 (patch)
tree5ea5bb81ac5456886d04d6db752468a8a63c950d /common.xml
parenteabdb30d4d8a73a5f4e6aa03eec60f82352b56e4 (diff)
downloadguice-8bb742a135e821d4c05b6997cedb438aa3694da4.tar.gz
Specifying Java 1.5 explicitly in the build. We don't work build perfectly on Java 1.6 yet...
git-svn-id: https://google-guice.googlecode.com/svn/trunk@695 d779f126-a31b-0410-b53b-1d3aecad763e
Diffstat (limited to 'common.xml')
-rw-r--r--common.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/common.xml b/common.xml
index cc7287c5..22796eec 100644
--- a/common.xml
+++ b/common.xml
@@ -13,7 +13,8 @@
<mkdir dir="${build.dir}/classes"/>
<javac srcdir="${src.dir}"
debug="on"
- destdir="${build.dir}/classes">
+ destdir="${build.dir}/classes"
+ source="1.5" target="1.5">
<classpath refid="compile.classpath"/>
</javac>
<copy toDir="${build.dir}/classes">
@@ -60,7 +61,8 @@
<mkdir dir="${build.dir}/test"/>
<javac srcdir="${test.dir}"
debug="on"
- destdir="${build.dir}/test">
+ destdir="${build.dir}/test"
+ source="1.5" target="1.5">
<classpath path="${build.dir}/classes"/>
<classpath refid="compile.classpath"/>
</javac>