dlr 02/01/02 20:34:53
Modified: . build-test.xml
Log:
Ant didn't like my classpath trick after all.
Revision Changes Path
1.7 +4 -6 jakarta-turbine-3/build-test.xml
Index: build-test.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-3/build-test.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -u -r1.6 -r1.7
--- build-test.xml 3 Jan 2002 04:28:03 -0000 1.6
+++ build-test.xml 3 Jan 2002 04:34:53 -0000 1.7
@@ -9,13 +9,15 @@
<!-- Set default values for the build -->
<property file="default.properties" />
- <!-- Construct compile classpath -->
+ <!-- Construct compile/run-time classpath -->
<path id="classpath">
<pathelement location="${dom4j.jar}"/>
<pathelement location="${junit.jar}"/>
<pathelement location="${commons-beanutils.jar}"/>
<pathelement location="${commons-collections.jar}"/>
<pathelement location="${commons-util.jar}"/>
+ <pathelement location="${fulcrum.jar}"/>
+ <pathelement location="${servlet.jar}"/>
<pathelement location="${stratum.jar}"/>
<pathelement location="${build.dest}"/>
</path>
@@ -38,11 +40,7 @@
<junit printSummary="yes">
<formatter type="plain"/>
- <classpath>
- <path refid="classpath"/>
- <pathelement location="${fulcrum.jar}"/>
- <pathelement location="${servlet.jar}"/>
- </classpath>
+ <classpath refid="classpath"/>
<batchtest todir="${test.reportsDirectory}">
<fileset dir="${build.dest}">
<include name="**/*Test*.class"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>