summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-11-22 09:28:19 +0000
committermichelou <michelou@epfl.ch>2007-11-22 09:28:19 +0000
commita9a877ea247b0cef7ef814b234e7a7f0610796a2 (patch)
tree4b8fe1225a91d36b38532deee1cbc09ef1166d17 /build.xml
parent062fedaefab69490c17df22114088b47ca46bad8 (diff)
downloadscala-a9a877ea247b0cef7ef814b234e7a7f0610796a2.tar.gz
scala-a9a877ea247b0cef7ef814b234e7a7f0610796a2.tar.bz2
scala-a9a877ea247b0cef7ef814b234e7a7f0610796a2.zip
added explicit compiler version (CLDC)
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 2734541d31..55fa47f60f 100644
--- a/build.xml
+++ b/build.xml
@@ -695,9 +695,11 @@ CLDC
description="Builds the Scala library for J2ME (CLDC)"
>
<mkdir dir="${cldc.dir}/lib/library"/>
+ <!-- javac versions > 1.4 do not support 1.1 target anymore -->
<javac
srcdir="${cldc.dir}/src"
destdir="${cldc.dir}/lib/library"
+ compiler="javac1.4"
source="1.1"
target="1.1"
deprecation="${jc.deprecation}"