anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / mkgmap / build.xml.patch
blob567c0d5586f85940f3a9eee2d2f7ee4ecc669bd4
1 --- a/build.xml (revision 4555)
2 +++ a/build.xml (working copy)
3 @@ -228,7 +228,7 @@
4 </target>
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">
11 <javac srcdir="${src}" destdir="${build.classes}" encoding="utf-8" debug="true" includeantruntime="false">
12 @@ -263,7 +263,7 @@
13 </target>
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>
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">