carnold 2005/08/18 17:26:51
Modified: tests Tag: v1_2-branch build.xml
Log:
Bug 35831: parameterized javac target and source like Ant, switched default
source to 1.1
Revision Changes Path
No revision
No revision
1.16.2.12 +5 -2 logging-log4j/tests/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/logging-log4j/tests/build.xml,v
retrieving revision 1.16.2.11
retrieving revision 1.16.2.12
diff -u -r1.16.2.11 -r1.16.2.12
--- build.xml 18 Aug 2005 22:23:53 -0000 1.16.2.11
+++ build.xml 19 Aug 2005 00:26:51 -0000 1.16.2.12
@@ -23,6 +23,9 @@
<property name="tests.source.home" value="./src/java/"/>
<property name="excludes" value=""/>
+
+ <property name="javac.source" value="1.1"/>
+ <property name="javac.target" value="1.1"/>
<path id="tests.classpath">
<pathelement location="${project.source.home}"/>
@@ -90,8 +93,8 @@
<javac srcdir="${tests.source.home}"
destdir="./classes"
deprecation="${deprecation}"
- target="1.1"
- source="1.3"
+ target="${javac.target}"
+ source="${javac.source}"
debug="on"
excludes="${excludes}">
<classpath refid="tests.classpath"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]