mirror of https://github.com/apache/poi.git
use xmlbeans 5.0.1
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891472 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5d65f68136
commit
4c6a87158b
|
@ -109,7 +109,7 @@ subprojects {
|
||||||
log4jVersion = '2.14.0'
|
log4jVersion = '2.14.0'
|
||||||
mockitoVersion = '3.6.0'
|
mockitoVersion = '3.6.0'
|
||||||
hamcrestVersion = '2.2'
|
hamcrestVersion = '2.2'
|
||||||
xmlbeansVersion = '5.0.0'
|
xmlbeansVersion = '5.0.1'
|
||||||
batikVersion = '1.14'
|
batikVersion = '1.14'
|
||||||
|
|
||||||
JAVA9_SRC = 'src/main/java9'
|
JAVA9_SRC = 'src/main/java9'
|
||||||
|
|
|
@ -330,7 +330,7 @@ under the License.
|
||||||
|
|
||||||
<!-- jars in the ooxml-lib directory, see the fetch-ooxml-jars target-->
|
<!-- jars in the ooxml-lib directory, see the fetch-ooxml-jars target-->
|
||||||
<dependency prefix="ooxml.curvesapi" artifact="com.github.virtuald:curvesapi:1.06" usage="ooxml"/>
|
<dependency prefix="ooxml.curvesapi" artifact="com.github.virtuald:curvesapi:1.06" usage="ooxml"/>
|
||||||
<dependency prefix="ooxml.xmlbeans" artifact="org.apache.xmlbeans:xmlbeans:5.0.0" usage="ooxml"/>
|
<dependency prefix="ooxml.xmlbeans" artifact="org.apache.xmlbeans:xmlbeans:5.0.1" usage="ooxml"/>
|
||||||
<dependency prefix="ooxml.commons-compress" artifact="org.apache.commons:commons-compress:1.20" usage="ooxml"/>
|
<dependency prefix="ooxml.commons-compress" artifact="org.apache.commons:commons-compress:1.20" usage="ooxml"/>
|
||||||
|
|
||||||
<!-- jars in the ooxml-test-lib directory, see the fetch-ooxml-jars target-->
|
<!-- jars in the ooxml-test-lib directory, see the fetch-ooxml-jars target-->
|
||||||
|
@ -688,7 +688,9 @@ under the License.
|
||||||
<include name="*slf4j*.jar"/>
|
<include name="*slf4j*.jar"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
<fileset dir="${basedir}/lib/ooxml">
|
<fileset dir="${basedir}/lib/ooxml">
|
||||||
<include name="xmlbeans-3.1.0.jar"/>
|
<include name="xmlbeans-3*.jar"/>
|
||||||
|
<include name="xmlbeans-4*.jar"/>
|
||||||
|
<include name="xmlbeans-5.0.0.jar"/>
|
||||||
</fileset>
|
</fileset>
|
||||||
<fileset dir="${basedir}/lib/ooxml-provided">
|
<fileset dir="${basedir}/lib/ooxml-provided">
|
||||||
<include name="bc*-1.65.jar"/>
|
<include name="bc*-1.65.jar"/>
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.xmlbeans</groupId>
|
<groupId>org.apache.xmlbeans</groupId>
|
||||||
<artifactId>xmlbeans</artifactId>
|
<artifactId>xmlbeans</artifactId>
|
||||||
<version>5.0.0</version>
|
<version>5.0.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.xmlbeans</groupId>
|
<groupId>org.apache.xmlbeans</groupId>
|
||||||
<artifactId>xmlbeans</artifactId>
|
<artifactId>xmlbeans</artifactId>
|
||||||
<version>5.0.0</version>
|
<version>5.0.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<name>Apache POI OSGi bundle</name>
|
<name>Apache POI OSGi bundle</name>
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<poi.version>5.0.0-SNAPSHOT</poi.version>
|
<poi.version>5.0.1-SNAPSHOT</poi.version>
|
||||||
<pax.exam.version>4.12.0</pax.exam.version>
|
<pax.exam.version>4.12.0</pax.exam.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
|
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
|
||||||
|
|
||||||
<!-- define some of the third-party or plugin-versions globally to use the same in all modules -->
|
<!-- define some of the third-party or plugin-versions globally to use the same in all modules -->
|
||||||
<xmlbeans.version>5.0.0</xmlbeans.version>
|
<xmlbeans.version>5.0.1</xmlbeans.version>
|
||||||
<junit.version>5.7.1</junit.version>
|
<junit.version>5.7.1</junit.version>
|
||||||
<xmlunit.version>2.8.2</xmlunit.version>
|
<xmlunit.version>2.8.2</xmlunit.version>
|
||||||
<mockito.version>3.6.28</mockito.version>
|
<mockito.version>3.6.28</mockito.version>
|
||||||
|
|
Loading…
Reference in New Issue