diff options
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -714,7 +714,7 @@ list of possible build targets. <src path="${basedir}/test/java"/> <patternset refid="test-sources"/> <classpath> - <path refid="libs-build-classpath"/> + <path refid="libs-build-tools-classpath"/> <fileset dir="${build.dir}"> <include name="fop.jar"/> </fileset> @@ -952,7 +952,9 @@ list of possible build targets. <test name="org.apache.fop.text.linebreak.LineBreakStatusTest" todir="${junit.reports.dir}"/> </junit> </target> - <target name="junit" depends="junit-userconfig, junit-basic, junit-transcoder, junit-text-linebreak, junit-layout, junit-fotree, junit-area-tree-xml-format, junit-intermediate-format" description="Runs all of FOP's JUnit tests" if="junit.present"> + <target name="junit-reduced" depends="junit-userconfig, junit-basic, junit-transcoder, junit-text-linebreak, junit-fotree"/> + <target name="junit-full" depends="junit-reduced, junit-layout, junit-area-tree-xml-format, junit-intermediate-format"/> + <target name="junit" depends="junit-full" description="Runs all of FOP's JUnit tests" if="junit.present"> <fail><condition><or><isset property="fop.junit.error"/><isset property="fop.junit.failure"/><not><isset property="hyphenation.present"/></not></or></condition> NOTE: ************************************************************************** @@ -1298,7 +1300,7 @@ NOTE: <!-- =================================================================== --> <!-- Special target for Gump --> <!-- =================================================================== --> - <target name="gump" depends="all, javadocs"/> + <target name="gump" depends="junit-reduced"/> <!-- =================================================================== --> <!-- Clean targets --> <!-- =================================================================== --> |