blob: 0f6997ebbc401c4ca9e99d5621b2dc98313fec58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- build.xml 2007-01-05 21:30:59.000000000 +0100
+++ build.xml 2007-01-05 21:31:46.000000000 +0100
@@ -47,7 +47,7 @@
</target>
<target name="test" depends="compile-tests" description="Runs all tests">
- <junit haltonfailure="false">
+ <junit haltonfailure="true">
<classpath>
<pathelement location="${build.dir}/classes/jvyaml"/>
<pathelement location="${build.dir}/test"/>
@@ -61,7 +61,7 @@
</junit>
</target>
- <target name="jar" depends="test" description="Create the jvyaml.jar file">
+ <target name="jar" depends="compile" description="Create the jvyaml.jar file">
<jar destfile="${lib.dir}/jvyaml.jar">
<fileset dir="${jvyaml.classes.dir}">
<include name="**/*.class"/>
|