diff options
author | Sven Gothel <[email protected]> | 2012-08-26 02:44:13 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-08-26 02:44:13 +0200 |
commit | aad0e4402ed37c19fb2ce16a908be2f4f60468c1 (patch) | |
tree | 7e7a38b4544690a19b4fb790758e14ec76af707a /build.xml | |
parent | 6099b6cd811fbd10b4e8d7e272aa457ef3bd8b9f (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.xml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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> |