diff options
author | Nick Burch <nick@apache.org> | 2014-04-15 16:29:05 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2014-04-15 16:29:05 +0000 |
commit | 9cc498fa5c9d4d2cf4e86b98bb3ddda108cdb887 (patch) | |
tree | 06879369c9f10a1e3b625a6f6757c77666b3d4d8 /build.xml | |
parent | 5b2c90e40689a67375a745777df729cd9a7f8324 (diff) | |
download | poi-9cc498fa5c9d4d2cf4e86b98bb3ddda108cdb887.tar.gz poi-9cc498fa5c9d4d2cf4e86b98bb3ddda108cdb887.zip |
More stax jar removal for Java 6
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1587631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -214,7 +214,6 @@ under the License. </path> <path id="ooxml.classpath"> - <pathelement location="${ooxml.jsr173.jar}"/> <pathelement location="${ooxml.dom4j.jar}"/> <pathelement location="${ooxml.xmlbeans.jar}"/> <pathelement location="${ooxml.xsds.jar}"/> @@ -245,7 +244,6 @@ under the License. </path> <path id="ooxml-lite.classpath"> - <pathelement location="${ooxml.jsr173.jar}"/> <pathelement location="${ooxml.dom4j.jar}"/> <pathelement location="${ooxml.xmlbeans.jar}"/> <pathelement location="build/ooxml-xsds-lite"/> <!-- instead of ooxml-xsds.jar use the filtered classes--> @@ -407,7 +405,6 @@ under the License. <and> <available file="${ooxml.dom4j.jar}"/> <available file="${ooxml.xmlbeans.jar}"/> - <available file="${ooxml.jsr173.jar}"/> <available file="${ooxml.xsds.jar}"/> </and> <isset property="disconnected"/> @@ -424,10 +421,6 @@ under the License. <param name="sourcefile" value="${ooxml.xmlbeans.url}"/> <param name="destfile" value="${ooxml.xmlbeans.jar}"/> </antcall> - <antcall target="downloadfile"> - <param name="sourcefile" value="${ooxml.jsr173.url}"/> - <param name="destfile" value="${ooxml.jsr173.jar}"/> - </antcall> </target> <target name="check-ooxml-xsds"> @@ -472,7 +465,7 @@ under the License. <taskdef name="xmlbean" classname="org.apache.xmlbeans.impl.tool.XMLBean" - classpath="${ooxml.xmlbeans.jar}:${ooxml.jsr173.jar}"/> + classpath="${ooxml.xmlbeans.jar}"/> <!-- We need a fair amount of memory to compile the xml schema, --> <!-- but limit it in case it goes wrong! --> @@ -511,7 +504,7 @@ under the License. description="Compiles the OOXML encryption xsd files into XmlBeans"> <taskdef name="xmlbean" classname="org.apache.xmlbeans.impl.tool.XMLBean" - classpath="${ooxml.xmlbeans.jar}:${ooxml.jsr173.jar}"/> + classpath="${ooxml.xmlbeans.jar}"/> <!-- We need a fair amount of memory to compile the xml schema, --> <!-- but limit it in case it goes wrong! --> |