ceki 2002/10/16 06:54:14 Modified: tests build.xml Log: The test build now forces a fresh build of the log4j classes. Revision Changes Path 1.23 +8 -2 jakarta-log4j/tests/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-log4j/tests/build.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- build.xml 16 Oct 2002 10:27:59 -0000 1.22 +++ build.xml 16 Oct 2002 13:54:14 -0000 1.23 @@ -62,11 +62,18 @@ <mkdir dir="./output" /> </target> + + <!-- ================================================================= --> + <!-- Build the parent project --> + <!-- ================================================================= --> + <target name="parentBuild"> + <ant dir=".." target="build"/> + </target> <!-- ================================================================= --> <!-- Compile test cases and related source files. --> <!-- ================================================================= --> - <target name="build" depends="prepare"> + <target name="build" depends="parentBuild, prepare"> <javac srcdir="${tests.source.home}" destdir="./classes" deprecation="${deprecation}" @@ -89,7 +96,6 @@ <fileset dir="./output/" includes="**"/> </delete> </target> - <!-- ================================================================= --> <!-- Run all tests -->
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>