Update of /cvsroot/mockobjects/mockobjects-java
In directory usw-pr-cvs1:/tmp/cvs-serv17378
Modified Files:
build.xml
Log Message:
Added mkdirs to junit target
Index: build.xml
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/build.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- build.xml 21 Oct 2002 22:56:19 -0000 1.27
+++ build.xml 22 Oct 2002 23:09:35 -0000 1.28
@@ -179,7 +179,12 @@
<target name="junit"
depends="call-me-first, compile-j2ee"
- description="run the junit tests">
+ description="run the junit tests">
+
+ <mkdir dir="${core.classes}" />
+ <mkdir dir="${jdk.classes}" />
+ <mkdir dir="${j2ee.classes}" />
+
<junit fork="yes" haltonfailure="yes">
<classpath>
<path refid="lib.classpath" />
|