umagesh 2002/07/07 13:38:27
Modified: . Tag: ANT_15_BRANCH build.xml
Log:
Add the target attribute to javac and let it default to 1.1
Revision Changes Path
No revision
No revision
1.304.2.22 +3 -0 jakarta-ant/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/build.xml,v
retrieving revision 1.304.2.21
retrieving revision 1.304.2.22
diff -u -r1.304.2.21 -r1.304.2.22
--- build.xml 2 Jul 2002 18:19:24 -0000 1.304.2.21
+++ build.xml 7 Jul 2002 20:38:27 -0000 1.304.2.22
@@ -27,6 +27,7 @@
<property name="chmod.fail" value="true" />
<property name="deprecation" value="false" />
<property name="optimize" value="true" />
+ <property name="javac.target" value="1.1" />
<property name="junit.fork" value="false" />
<property name="junit.filtertrace" value="off"/>
<property name="junit.summary" value="no"/>
@@ -560,6 +561,7 @@
destdir="${build.classes}"
debug="${debug}"
deprecation="${deprecation}"
+ target="${javac.target}"
optimize="${optimize}" >
<classpath refid="classpath" />
@@ -1154,6 +1156,7 @@
<javac srcdir="${tests.dir}"
destdir="${build.tests}"
debug="${debug}"
+ target="${javac.target}"
deprecation="${deprecation}" >
<classpath refid="tests-classpath" />
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>