blob: 7dd18aada2c4652a46d9e3843c75376f2a3cd4b7 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
A patch for Apache Xerces 2.9.1 to retain line number information
for XML tag attributes that may extend onto multiple lines.
-->
<project name="Xerces Patch" default="main" basedir=".">
<!-- properties -->
<property file="../../../build.properties"/>
<property name="lib.ext.dir" value="../../../lib/external" />
<property name="module.dir" value="."/>
<property name="module.src" value="${module.dir}/src/java"/>
<property name="module.classes" value="${module.dir}/classes"/>
<property name="javac.src" value="1.8"/>
<property name="build.number" value=""/>
<target name="main" depends="clean,dev" description="cleans and runs the full build"/>
<target name="dev" depends="jar" description="runs src.depend build for development"/>
<path id="xerces.classpath">
<fileset dir="${lib.ext.dir}">
<include name="xercesImpl*.jar" />
<exclude name="xercesPatch.jar" />
</fileset>
</path>
<target name="compile" depends="prepare,run-depend" description="compile">
<javac source="${javac.src}" target="${javac.src}" debug="${src.debug}" destdir="${module.classes}" srcdir="${module.src}"
includes="**/*.java" >
<classpath refid="xerces.classpath"/>
</javac>
<copy todir="${module.classes}">
<fileset dir="${module.src}">
<include name="META-INF/**" />
<include name="org/apache/xerces/jaxp/javax.xml.parsers.SAXParserFactory" />
</fileset>
</copy>
</target>
<target name="jar" depends="compile" description="compile and create xercesPatch.jar">
<mkdir dir="${module.classes}/META-INF"/>
<copy file="../../../licenseParts/LICENSE.base" tofile="${module.classes}/META-INF/LICENSE"/>
<!--use copy of xerces NOTICE stored in our repo -->
<!--<copy file="../../../NOTICE" todir="${module.classes}/META-INF"/>-->
<echo message="Building lib/xercesPatch.jar"/>
<jar file="${lib.ext.dir}/xercesPatch.jar" basedir="${module.classes}" includes="**/*">
<manifest>
<attribute name="Sealed" value="${manifest.sealed}"/>
<attribute name="Implementation-Title" value="${manifest.Implementation-Title} - Patch for Apache Xerces 2.9.1"/>
<attribute name="Implementation-Version" value="${manifest.Implementation-Version}.${build.number}"/>
<attribute name="Implementation-Vendor" value="${manifest.Implementation-Vendor}"/>
<attribute name="Implementation-Vendor-Id" value="${manifest.Implementation-Vendor-Id}"/>
</manifest>
</jar>
</target>
<target name="clean" description="clean">
<delete failonerror="false" includeEmptyDirs="true">
<fileset file="${lib.ext.dir}/xercesPatch.jar"/>
<fileset dir="${module.classes}">
<include name="**/*"/>
</fileset>
</delete>
<delete failonerror="false" dir="${module.classes}"/>
</target>
<target name="prepare">
<mkdir dir="${lib.ext.dir}"/>
<mkdir dir="${module.classes}"/>
</target>
<!-- if src.depend is specified, delete the stuff which has changed so it can be recompiled -->
<target name="run-depend" if="src.depend">
<echo level="info" message="Removing class files that changed and dependent class files."/>
<depend cache="${module.classes}" srcdir="${module.src}" destdir="${module.classes}"/>
</target>
</project>