aboutsummaryrefslogtreecommitdiffstats
path: root/buildtools.xml
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools.xml')
-rw-r--r--buildtools.xml17
1 files changed, 3 insertions, 14 deletions
diff --git a/buildtools.xml b/buildtools.xml
index 37be5e051..957045ca3 100644
--- a/buildtools.xml
+++ b/buildtools.xml
@@ -5,8 +5,7 @@
Instructions for building the buildtools.jar:
Classpath should contain the following:
- Xerces 1.2.x
- Xalan 1.2.x
+ Xerces 1.4.x
Xalan 2.x
xml-fop/lib/ant.jar
@@ -25,11 +24,9 @@
<property name="hyph" value="org/apache/fop/layout/hyphenation"/>
<property name="buildtools.jar" value="./lib/buildtools.jar"/>
- <property name="xalan1" value="Xalan1Transform.java"/>
<property name="trax" value="TraxTransform.java"/>
<available property="trax.present" classname="javax.xml.transform.Transformer"/>
- <available property="xalan1.present" classname="org.apache.xalan.xslt.XSLTProcessor"/>
</target>
<target name="compile" depends="init,prepare.src">
@@ -46,19 +43,11 @@
includes="${tools}/**,${hyph}/**"/>
</target>
- <target name="prepare.src" depends="prepare.xalan1,prepare.trax">
+ <target name="prepare.src" depends="prepare.trax">
<copy todir="${build.src}">
<fileset dir="${src.dir}"
includes="${tools}/**,${hyph}/**"
- excludes="${tools}/anttasks/Fop.java,${tools}/TestConverter.java,${tools}/AreaTreeBuilder.java,${hyph}/Hyphenator.java,**/${xalan1},**/${trax}"/>
- </copy>
- </target>
-
- <target name="prepare.xalan1" if="xalan1.present">
- <echo message="Xalan1 is present. Installing Xalan1 support"/>
- <copy todir="${build.src}">
- <fileset dir="${src.dir}"
- includes="**/${xalan1}"/>
+ excludes="${tools}/anttasks/Fop.java,${tools}/TestConverter.java,${tools}/AreaTreeBuilder.java,${hyph}/Hyphenator.java,**/${trax}"/>
</copy>
</target>