aboutsummaryrefslogtreecommitdiffstats
path: root/src/integrationtest/build.xml
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2017-09-15 18:39:18 +0000
committerDominik Stadler <centic@apache.org>2017-09-15 18:39:18 +0000
commitbb507440ed5087e223558b87e865eae9a93eb243 (patch)
tree143eb97e84139aa1aec7fb3b6c767eef567c22d0 /src/integrationtest/build.xml
parentb7e55e211b6ac2c12652c666ce8153151e94c294 (diff)
downloadpoi-bb507440ed5087e223558b87e865eae9a93eb243.tar.gz
poi-bb507440ed5087e223558b87e865eae9a93eb243.zip
Update third party libs to latest versions
Start updating build to Java 8 Set version to 4.0-beta1 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808472 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/integrationtest/build.xml')
-rw-r--r--src/integrationtest/build.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/integrationtest/build.xml b/src/integrationtest/build.xml
index 6af90e77b5..89be8998aa 100644
--- a/src/integrationtest/build.xml
+++ b/src/integrationtest/build.xml
@@ -90,9 +90,9 @@ Before running this, you should execute the "assemble" target in the main build.
<sort>
<resources>
<fileset dir="${dist}">
- <include name="**/poi-3.*.jar"/>
- <include name="**/poi-ooxml-3.*.jar"/>
- <include name="**/poi-ooxml-schemas-3.*.jar"/>
+ <include name="**/poi-4.*.jar"/>
+ <include name="**/poi-ooxml-4.*.jar"/>
+ <include name="**/poi-ooxml-schemas-4.*.jar"/>
<exclude name="**/*-javadoc*"/>
<exclude name="**/*-sources*"/>
</fileset>
@@ -125,7 +125,7 @@ Before running this, you should execute the "assemble" target in the main build.
<echo message="Compiling examples without linking to scratchpad.jar to ensure that only some specific ones require this jar"/>
<javac srcdir="../examples/src" destdir="${build}"
- target="1.6" source="1.6" debug="true"
+ target="1.8" source="1.8" debug="true"
encoding="ASCII" fork="yes" includeantruntime="false"
excludes="org/apache/poi/hslf/**,org/apache/poi/hsmf/**,**/EmbeddedObjects.java,**/EmeddedObjects.java,**/LoadEmbedded.java,**/Word2Forrest.java"
classpath="${jarpackage}" classpathref="libs">
@@ -136,10 +136,10 @@ Before running this, you should execute the "assemble" target in the main build.
<sort>
<resources>
<fileset dir="${dist}">
- <include name="**/poi-3.*.jar"/>
- <include name="**/poi-ooxml-3.*.jar"/>
- <include name="**/poi-ooxml-schemas-3.*.jar"/>
- <include name="**/poi-scratchpad-3.*.jar"/>
+ <include name="**/poi-4.*.jar"/>
+ <include name="**/poi-ooxml-4.*.jar"/>
+ <include name="**/poi-ooxml-schemas-4.*.jar"/>
+ <include name="**/poi-scratchpad-4.*.jar"/>
<exclude name="**/*-javadoc*"/>
<exclude name="**/*-sources*"/>
</fileset>
@@ -149,7 +149,7 @@ Before running this, you should execute the "assemble" target in the main build.
<echo message="Compiling all examples with the additional scratchpad.jar"/>
<javac srcdir="../examples/src" destdir="${build}"
- target="1.6" source="1.6" debug="true"
+ target="1.8" source="1.8" debug="true"
encoding="ASCII" fork="yes" includeantruntime="false"
classpath="${jarpackagescratchpad}" classpathref="libs">
</javac>