at master 29 lines 1.1 kB view raw
1--- a/build.xml (revision 4555) 2+++ a/build.xml (working copy) 3@@ -228,7 +228,7 @@ 4 </target> 5 6 <!-- Compile the product itself (no tests). --> 7- <target name="compile" depends="prepare, resolve-compile" 8+ <target name="compile" depends="prepare" 9 description="main compilation"> 10 11 <javac srcdir="${src}" destdir="${build.classes}" encoding="utf-8" debug="true" includeantruntime="false"> 12@@ -263,7 +263,7 @@ 13 </target> 14 15 <!-- Compile the test classes --> 16- <target name="build-test" depends="build, resolve-test"> 17+ <target name="build-test" depends="build"> 18 <mkdir dir="${build.test}" /> 19 <javac srcdir="${test}" destdir="${build.test}" encoding="utf-8" debug="true" includeantruntime="false"> 20 <include name="**/*.java" /> 21@@ -271,7 +271,7 @@ 22 </javac> 23 </target> 24 25- <target name="test" depends="build-test, obtain-test-input-files" description="Run the junit tests"> 26+ <target name="test" depends="build-test" description="Run the junit tests"> 27 <mkdir dir="tmp/report"/> 28 <junit printsummary="yes" failureproperty="junit.failure" forkmode="once"> 29