diff options
author | Uwe Schindler <uschindler@apache.org> | 2014-08-12 07:19:51 +0000 |
---|---|---|
committer | Uwe Schindler <uschindler@apache.org> | 2014-08-12 07:19:51 +0000 |
commit | fed01cb1ad4eea07ee7cdb232e65aa6271bdef7f (patch) | |
tree | 6088751d68a71c70ada6bdd627d9532e1f734892 /build.xml | |
parent | 549f7bc0e6311ef8448be11e308e5d28006b64f9 (diff) | |
download | poi-fed01cb1ad4eea07ee7cdb232e65aa6271bdef7f.tar.gz poi-fed01cb1ad4eea07ee7cdb232e65aa6271bdef7f.zip |
Fix bug #56814 - Switch from dom4j to JAXP
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1617428 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -148,8 +148,6 @@ under the License. <property name="main.antlauncher.url" value="${repository.m2}/maven2/org/apache/ant/ant-launcher/1.9.4/ant-launcher-1.9.4.jar"/> <!-- jars in the lib-ooxml directory, see the fetch-ooxml-jars target--> - <property name="ooxml.dom4j.jar" location="${ooxml.lib}/dom4j-1.6.1.jar"/> - <property name="ooxml.dom4j.url" value="${repository.m2}/maven2/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar"/> <property name="ooxml.xmlbeans23.jar" location="${ooxml.lib}/xmlbeans-2.3.0.jar"/> <property name="ooxml.xmlbeans23.url" value="${repository.m2}/maven2/org/apache/xmlbeans/xmlbeans/2.3.0/xmlbeans-2.3.0.jar"/> @@ -221,7 +219,6 @@ under the License. </path> <path id="ooxml.classpath"> - <pathelement location="${ooxml.dom4j.jar}"/> <pathelement location="${ooxml.xmlbeans26.jar}"/> <pathelement location="${ooxml.xsds.jar}"/> <path refid="main.classpath"/> @@ -251,7 +248,6 @@ under the License. </path> <path id="ooxml-lite.classpath"> - <pathelement location="${ooxml.dom4j.jar}"/> <pathelement location="${ooxml.xmlbeans26.jar}"/> <pathelement location="build/ooxml-xsds-lite"/> <!-- instead of ooxml-xsds.jar use the filtered classes--> <path refid="main.classpath"/> @@ -429,7 +425,6 @@ under the License. <condition property="ooxml.jars.present"> <or> <and> - <available file="${ooxml.dom4j.jar}"/> <available file="${ooxml.xmlbeans23.jar}"/> <available file="${ooxml.xmlbeans26.jar}"/> <available file="${ooxml.xsds.jar}"/> @@ -441,10 +436,6 @@ under the License. <target name="fetch-ooxml-jars" depends="check-ooxml-jars" unless="ooxml.jars.present"> <mkdir dir="${ooxml.lib}"/> <antcall target="downloadfile"> - <param name="sourcefile" value="${ooxml.dom4j.url}"/> - <param name="destfile" value="${ooxml.dom4j.jar}"/> - </antcall> - <antcall target="downloadfile"> <param name="sourcefile" value="${ooxml.xmlbeans23.url}"/> <param name="destfile" value="${ooxml.xmlbeans23.jar}"/> </antcall> @@ -1288,7 +1279,6 @@ under the License. <include name="log4j-*.jar"/> </zipfileset> <zipfileset dir="${ooxml.lib}" prefix="${zipdir}/ooxml-lib"> - <include name="dom4j-*.jar"/> <include name="xmlbeans-2.6*.jar"/> </zipfileset> <zipfileset dir="${dist.dir}" prefix="${zipdir}"> @@ -1316,7 +1306,6 @@ under the License. <include name="log4j-*.jar"/> </zipfileset> <tarfileset dir="${ooxml.lib}" prefix="${zipdir}/ooxml-lib"> - <include name="dom4j-*.jar"/> <include name="xmlbeans-2.6*.jar"/> </tarfileset> <tarfileset dir="${build.site}" prefix="${zipdir}/docs"/> @@ -1449,7 +1438,6 @@ under the License. <auxClasspath path="ooxml-lib/ooxml-schemas-1.1.jar" /> <auxClasspath path="ooxml-lib/ooxml-encryption-1.1.jar" /> <auxClasspath path="ooxml-lib/xmlbeans-2.6.0.jar" /> - <auxClasspath path="ooxml-lib/dom4j-1.6.1.jar" /> <auxClasspath path="lib/commons-codec-1.9.jar" /> <auxClasspath path="lib/commons-logging-1.1.3.jar" /> <auxClasspath path="lib/junit-4.11.jar" /> |