Browse Source

Customizing the Gump runs from our build file rather than from the Gump descriptor.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1076307 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Jeremias Maerki 13 years ago
parent
commit
b3365920c4
1 changed files with 14 additions and 2 deletions
  1. 14
    2
      build.xml

+ 14
- 2
build.xml View File

@@ -1440,8 +1440,20 @@ NOTE:
<!-- =================================================================== -->
<!-- Special target for Gump -->
<!-- =================================================================== -->
<target name="gump" depends="junit-reduced"/>
<!-- =================================================================== -->
<target name="gump" depends="package,transcoder-pkg"/>
<target name="gump-test" depends="junit-full">
<fail>
<condition>
<or>
<isset property="fop.junit.error"/>
<isset property="fop.junit.failure"/>
</or>
</condition>
At least one unit test failed!
</fail>
<echo>All tests passed!</echo>
</target>
<!-- =================================================================== -->
<!-- Clean targets -->
<!-- =================================================================== -->
<target name="clean" description="Cleans the build directory">

Loading…
Cancel
Save