dlr 02/02/18 20:07:17
Modified: . build.xml
Log:
o Removed junit.jar from global classpath.
o Removed build.test.dest from test compilation classpath.
o Added junit.jar to <junit> execution classpath, and removed
commented out <excludes> from <fileset>.
Revision Changes Path
1.11 +1 -3 xml-rpc/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-rpc/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -u -r1.10 -r1.11
--- build.xml 19 Feb 2002 04:00:41 -0000 1.10
+++ build.xml 19 Feb 2002 04:07:17 -0000 1.11
@@ -19,7 +19,6 @@
<pathelement location="${jnet.jar}"/>
<pathelement location="${jcert.jar}"/>
<pathelement location="${servlet.jar}"/>
- <pathelement location="${junit.jar}"/>
</path>
<!-- ================================================================== -->
@@ -228,7 +227,6 @@
<classpath refid="classpath"/>
<classpath>
<pathelement path="${build.dest}"/>
- <pathelement path="${build.test.dest}"/>
</classpath>
</javac>
@@ -250,12 +248,12 @@
<classpath refid="classpath"/>
<classpath>
<pathelement path="${build.dest}"/>
+ <pathelement location="${junit.jar}"/>
<pathelement path="${build.test.dest}"/>
</classpath>
<batchtest todir="${test.reportsDirectory}">
<fileset dir="${build.test.dest}">
<include name="**/*Test.class"/>
- <!-- <exclude name="**/*ServletTest.class"/> -->
</fileset>
</batchtest>
</junit>