rwaldhoff 2003/01/31 04:02:43
Modified: functor build.xml
Log:
built tests to target/test-classes, to match maven script
Revision Changes Path
1.4 +5 -5 jakarta-commons-sandbox/functor/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/functor/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.xml 28 Jan 2003 20:36:44 -0000 1.3
+++ build.xml 31 Jan 2003 12:02:43 -0000 1.4
@@ -83,7 +83,7 @@
<!-- Construct unit test classpath -->
<path id="test.classpath">
<pathelement location="${build.home}/classes"/>
- <pathelement location="${build.home}/tests"/>
+ <pathelement location="${build.home}/test-classes"/>
<pathelement location="${junit.jar}"/>
</path>
@@ -111,7 +111,7 @@
<mkdir dir="${build.home}"/>
<mkdir dir="${build.home}/classes"/>
<mkdir dir="${build.home}/conf"/>
- <mkdir dir="${build.home}/tests"/>
+ <mkdir dir="${build.home}/test-classes"/>
</target>
@@ -142,13 +142,13 @@
<target name="compile.tests" depends="compile"
description="Compile unit test cases">
<javac srcdir="${test.home}"
- destdir="${build.home}/tests"
+ destdir="${build.home}/test-classes"
debug="${compile.debug}"
deprecation="${compile.deprecation}"
optimize="${compile.optimize}">
<classpath refid="test.classpath"/>
</javac>
- <copy todir="${build.home}/tests" filtering="on">
+ <copy todir="${build.home}/test-classes" filtering="on">
<fileset dir="${test.home}" excludes="**/*.java"/>
</copy>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]