Skip to content

Commit

Permalink
Fix 'clean-jar-test' target (need to redo 'init' for manifest.mf file…
Browse files Browse the repository at this point in the history
…) .. called from jenkins
  • Loading branch information
sgothel committed Aug 26, 2012
1 parent 6099b6c commit aad0e44
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.xml
Expand Up @@ -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>

0 comments on commit aad0e44

Please sign in to comment.