jvanzyl 01/09/16 22:18:55
Modified: src/tdk/apps/2 build.xml
src/tdk/apps/3 build.xml
Log:
- adding ${build.dest} as a pathelement in the classpath created.
using this for the compile and for the tests now.
Revision Changes Path
1.7 +2 -12 jakarta-turbine-tdk/src/tdk/apps/2/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-tdk/src/tdk/apps/2/build.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- build.xml 2001/09/17 00:21:17 1.6
+++ build.xml 2001/09/17 05:18:55 1.7
@@ -9,7 +9,6 @@
<property file="${user.home}/build.properties"/>
<property name="build.properties" value="build.properties"/>
- <!-- Build classpath -->
<path id="classpath">
<fileset dir="${tdk.home}/webapps/${project}/WEB-INF/lib">
<include name="**/*.jar"/>
@@ -17,6 +16,7 @@
<fileset dir="${tdk.home}/common/lib">
<include name="**/servlet*.jar"/>
</fileset>
+ <pathelement path="${build.dest}"/>
</path>
<!-- ================================================================ -->
@@ -476,21 +476,11 @@
<!-- T E S T -->
<!-- =================================================================== -->
- <path id="testpath">
- <fileset dir="../lib">
- <include name="**/*.jar"/>
- </fileset>
- <fileset dir="../../../../bin">
- <include name="**/servlet*.jar"/>
- </fileset>
- <pathelement path="../classes"/>
- </path>
-
<target name="test" description="--> runs the tests">
<junit printsummary="yes" >
<formatter type="plain" />
- <classpath refid="testpath"/>
+ <classpath refid="classpath"/>
<test name="org.apache.turbine.test.TestLoginLogout"/>
</junit>
1.4 +2 -11 jakarta-turbine-tdk/src/tdk/apps/3/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-tdk/src/tdk/apps/3/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.xml 2001/09/17 00:21:17 1.3
+++ build.xml 2001/09/17 05:18:55 1.4
@@ -14,6 +14,7 @@
<fileset dir="${tdk.home}/common/lib">
<include name="**/servlet*.jar"/>
</fileset>
+ <pathelement path="${build.dest}"/>
</path>
<!-- ================================================================ -->
@@ -484,21 +485,11 @@
<!-- T E S T -->
<!-- =================================================================== -->
- <path id="testpath">
- <fileset dir="../lib">
- <include name="**/*.jar"/>
- </fileset>
- <fileset dir="../../../../bin">
- <include name="**/servlet*.jar"/>
- </fileset>
- <pathelement path="../classes"/>
- </path>
-
<target name="test" description="--> runs the tests">
<junit printsummary="yes" >
<formatter type="plain" />
- <classpath refid="testpath"/>
+ <classpath refid="classpath"/>
<test name="org.apache.turbine.test.TestLoginLogout"/>
</junit>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]