summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-08-26 02:44:13 +0200
committerSven Gothel <[email protected]>2012-08-26 02:44:13 +0200
commitaad0e4402ed37c19fb2ce16a908be2f4f60468c1 (patch)
tree7e7a38b4544690a19b4fb790758e14ec76af707a /build.xml
parent6099b6cd811fbd10b4e8d7e272aa457ef3bd8b9f (diff)
Fix 'clean-jar-test' target (need to redo 'init' for manifest.mf file) .. called from jenkinsv2.0-rc11
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 00f2254b..0768736e 100644
--- a/build.xml
+++ b/build.xml
@@ -706,6 +706,11 @@
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
</target>
- <target name="clean-jar-test" depends="clean,jar,test"/>
+ <target name="jar-test" depends="jar,test"/>
+
+ <target name="clean-jar-test">
+ <antcall target="clean" inheritRefs="true" inheritAll="true"/>
+ <antcall target="jar-test" inheritRefs="true" inheritAll="true"/>
+ </target>
</project>