Added build-compile as a dependency for test-compile.
authorchris_schultz <chris_schultz>
Tue, 6 Nov 2007 21:42:44 +0000 (21:42 +0000)
committerchris_schultz <chris_schultz>
Tue, 6 Nov 2007 21:42:44 +0000 (21:42 +0000)
build.xml

index 3a6d13a..0e2d0b1 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0"?>
 
 <!--
-$Id: build.xml,v 1.23 2006/02/15 08:23:52 maxcooper Exp $
-$Revision: 1.23 $
-$Date: 2006/02/15 08:23:52 $
+$Id: build.xml,v 1.24 2007/11/06 21:42:44 chris_schultz Exp $
+$Revision: 1.24 $
+$Date: 2007/11/06 21:42:44 $
 -->
 
 
@@ -211,7 +211,7 @@ $Date: 2006/02/15 08:23:52 $
 
    <!-- ========== Test Target ===================================================================================== -->
 
-   <target name="test" depends="deploy,test-compile" description="tests webapp(s) on server(s)">
+   <target name="test" depends="deploy, test-compile" description="tests webapp(s) on server(s)">
       <mkdir dir="${build.test.data.dir}"/>
       <junit printsummary="false"
          errorProperty="test.failed"
@@ -236,7 +236,7 @@ $Date: 2006/02/15 08:23:52 $
       <fail message="Functional tests failed" if="test.failed"/>
    </target>
 
-   <target name="test-compile">
+   <target name="test-compile" depends="build-compile">
       <mkdir dir="${build.test.classes.dir}"/>
       <javac
          srcdir="${src.test.dir}"