summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-04-10 12:11:03 +0000
committermichelou <michelou@epfl.ch>2006-04-10 12:11:03 +0000
commit8fc98a03c21bdda75dc283087c987cf8ebcfb070 (patch)
tree487b54dd3e49b327b5e79e40796163b95ad66eb5 /build.xml
parentb8da7c77d6fe54f761a21205f0359782333246fd (diff)
downloadscala-8fc98a03c21bdda75dc283087c987cf8ebcfb070.tar.gz
scala-8fc98a03c21bdda75dc283087c987cf8ebcfb070.tar.bz2
scala-8fc98a03c21bdda75dc283087c987cf8ebcfb070.zip
added attributes 'source', 'target' and 'deprec...
added attributes 'source', 'target' and 'deprecation' to task 'javac' in file build.xml
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index a271c4c38e..34024b5f1e 100644
--- a/build.xml
+++ b/build.xml
@@ -33,6 +33,10 @@ PROPERTIES
<property name="number.file" value="${basedir}/build.number"/>
<property name="copyright" value="(c) 2002-2006 LAMP/EPFL"/>
<property name="logs.dir" value="${basedir}/logs"/>
+ <!-- Javac configuration properties -->
+ <property name="jc.source" value="1.4"/>
+ <property name="jc.target" value="1.4"/>
+ <property name="jc.deprecation" value="true"/>
<!-- NSC configuration properties -->
<property name="nsc.logging" value="none"/>
<property name="nsc.log-files" value="no"/>
@@ -409,6 +413,9 @@ BUILD LOCAL REFERENCE (LOCKER) LAYER
<javac
srcdir="${src.dir}/${lib.dir.name}"
destdir="${locker.lib.dir}"
+ source="${jc.source}"
+ target="${jc.target}"
+ deprecation="${jc.deprecation}"
>
<classpath>
<pathelement location="${locker.lib.dir}"/>
@@ -444,6 +451,9 @@ BUILD LOCAL REFERENCE (LOCKER) LAYER
<javac
srcdir="${src.dir}/${comp.dir.name}"
destdir="${locker.comp.dir}"
+ source="${jc.source}"
+ target="${jc.target}"
+ deprecation="${jc.deprecation}"
>
<classpath>
<pathelement location="${locker.lib.dir}"/>
@@ -548,6 +558,9 @@ BUILD QUICK-TEST LAYER
<javac
srcdir="${src.dir}/${lib.dir.name}"
destdir="${quick.lib.dir}"
+ source="${jc.source}"
+ target="${jc.target}"
+ deprecation="${jc.deprecation}"
>
<classpath>
<pathelement location="${quick.lib.dir}"/>
@@ -601,6 +614,9 @@ BUILD QUICK-TEST LAYER
<javac
srcdir="${src.dir}/${comp.dir.name}"
destdir="${quick.comp.dir}"
+ source="${jc.source}"
+ target="${jc.target}"
+ deprecation="${jc.deprecation}"
>
<classpath>
<pathelement location="${quick.lib.dir}"/>
@@ -716,6 +732,9 @@ TEST
<javac
srcdir="${src.dir}/${lib.dir.name}"
destdir="${strap.lib.dir}"
+ source="${jc.source}"
+ target="${jc.target}"
+ deprecation="${jc.deprecation}"
>
<classpath>
<pathelement location="${strap.lib.dir}"/>
@@ -766,6 +785,9 @@ TEST
<javac
srcdir="${src.dir}/${comp.dir.name}"
destdir="${strap.comp.dir}"
+ source="${jc.source}"
+ target="${jc.target}"
+ deprecation="${jc.deprecation}"
>
<classpath>
<pathelement location="${strap.lib.dir}"/>