diff options
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | build.xml | 6 | ||||
-rw-r--r-- | maven/poi-ooxml-full.pom | 2 | ||||
-rw-r--r-- | maven/poi-ooxml-lite.pom | 2 | ||||
-rw-r--r-- | osgi/pom.xml | 2 | ||||
-rw-r--r-- | sonar/pom.xml | 2 |
6 files changed, 9 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle index 1281490993..13506ce248 100644 --- a/build.gradle +++ b/build.gradle @@ -109,7 +109,7 @@ subprojects { log4jVersion = '2.14.0' mockitoVersion = '3.6.0' hamcrestVersion = '2.2' - xmlbeansVersion = '5.0.0' + xmlbeansVersion = '5.0.1' batikVersion = '1.14' JAVA9_SRC = 'src/main/java9' @@ -330,7 +330,7 @@ under the License. <!-- 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.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"/> <!-- jars in the ooxml-test-lib directory, see the fetch-ooxml-jars target--> @@ -688,7 +688,9 @@ under the License. <include name="*slf4j*.jar"/> </fileset> <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 dir="${basedir}/lib/ooxml-provided"> <include name="bc*-1.65.jar"/> diff --git a/maven/poi-ooxml-full.pom b/maven/poi-ooxml-full.pom index 3696f23e7b..e6795ea940 100644 --- a/maven/poi-ooxml-full.pom +++ b/maven/poi-ooxml-full.pom @@ -64,7 +64,7 @@ <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> - <version>5.0.0</version> + <version>5.0.1</version> </dependency> </dependencies> </project> diff --git a/maven/poi-ooxml-lite.pom b/maven/poi-ooxml-lite.pom index 9ad3a4b9a2..2d09069b9b 100644 --- a/maven/poi-ooxml-lite.pom +++ b/maven/poi-ooxml-lite.pom @@ -70,7 +70,7 @@ <dependency> <groupId>org.apache.xmlbeans</groupId> <artifactId>xmlbeans</artifactId> - <version>5.0.0</version> + <version>5.0.1</version> </dependency> </dependencies> </project> diff --git a/osgi/pom.xml b/osgi/pom.xml index b16e9f9302..a8d866575a 100644 --- a/osgi/pom.xml +++ b/osgi/pom.xml @@ -29,7 +29,7 @@ <name>Apache POI OSGi bundle</name> <properties> <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> </properties> diff --git a/sonar/pom.xml b/sonar/pom.xml index 9e0147ae42..085cedf7e0 100644 --- a/sonar/pom.xml +++ b/sonar/pom.xml @@ -79,7 +79,7 @@ <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 --> - <xmlbeans.version>5.0.0</xmlbeans.version> + <xmlbeans.version>5.0.1</xmlbeans.version> <junit.version>5.7.1</junit.version> <xmlunit.version>2.8.2</xmlunit.version> <mockito.version>3.6.28</mockito.version> |