diff options
author | Nick Burch <nick@apache.org> | 2014-04-15 15:19:30 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2014-04-15 15:19:30 +0000 |
commit | 5b2c90e40689a67375a745777df729cd9a7f8324 (patch) | |
tree | 09119736555c1fc08c21e73b34a1c11fff036f17 /build.xml | |
parent | f821fc9a70f5a8b95ea527781704d1a4f3a67e2c (diff) | |
download | poi-5b2c90e40689a67375a745777df729cd9a7f8324.tar.gz poi-5b2c90e40689a67375a745777df729cd9a7f8324.zip |
Now that we require Java 1.6, we no longer need to include the STAX-API jar as JRE 1.6 has it build in
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1587605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -40,7 +40,7 @@ under the License. To build the documentation you will need to install forrest and set the FORREST_HOME environment variable. Forrest 0.5.1 required. - Since POI 3.5 you will need JDK 1.5 or newer to build POI. + You currently need JDK 1.6 or newer to build POI. Some people may find the tests hang when run through Ant. If this happens to you, try giving Ant some more memory when you run it, eg: @@ -149,8 +149,6 @@ under the License. <property name="ooxml.xmlbeans.jar" location="${ooxml.lib}/xmlbeans-2.3.0.jar"/> <property name="ooxml.xmlbeans.url" value="${repository.m2}/maven2/org/apache/xmlbeans/xmlbeans/2.3.0/xmlbeans-2.3.0.jar"/> - <property name="ooxml.jsr173.jar" location="${ooxml.lib}/stax-api-1.0.1.jar"/> - <property name="ooxml.jsr173.url" value="${repository.m2}/maven2/stax/stax-api/1.0.1/stax-api-1.0.1.jar"/> <!-- coverage libs --> <property name="jacoco.zip" location="${main.lib}/jacoco-0.6.5.201403032054.zip"/> @@ -1257,7 +1255,6 @@ under the License. </zipfileset> <zipfileset dir="${ooxml.lib}" prefix="${zipdir}/ooxml-lib"> <include name="dom4j-*.jar"/> - <include name="stax-api-*.jar"/> <include name="xmlbeans-*.jar"/> </zipfileset> <zipfileset dir="${dist.dir}" prefix="${zipdir}"> @@ -1286,7 +1283,6 @@ under the License. </zipfileset> <tarfileset dir="${ooxml.lib}" prefix="${zipdir}/ooxml-lib"> <include name="dom4j-*.jar"/> - <include name="stax-api-*.jar"/> <include name="xmlbeans-*.jar"/> </tarfileset> <tarfileset dir="${build.site}" prefix="${zipdir}/docs"/> @@ -1419,7 +1415,6 @@ under the License. <auxClasspath path="ooxml-lib/ooxml-encryption-1.1.jar" /> <auxClasspath path="ooxml-lib/xmlbeans-2.3.0.jar" /> <auxClasspath path="ooxml-lib/dom4j-1.6.1.jar" /> - <auxClasspath path="ooxml-lib/stax-api-1.0.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" /> |