aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.classpath1
-rw-r--r--build.gradle2
-rw-r--r--doap_POI.rdf7
-rw-r--r--osgi/build.xml2
-rw-r--r--src/examples/groovy/build.gradle4
-rw-r--r--src/examples/scala/build.sbt6
6 files changed, 15 insertions, 7 deletions
diff --git a/.classpath b/.classpath
index b5dae4cbff..d3744e86e8 100644
--- a/.classpath
+++ b/.classpath
@@ -44,5 +44,6 @@
<classpathentry kind="lib" path="lib/mockito-core-2.23.4.jar"/>
<classpathentry kind="lib" path="lib/byte-buddy-1.9.3.jar"/>
<classpathentry kind="lib" path="lib/byte-buddy-agent-1.9.3.jar"/>
+ <classpathentry kind="lib" path="compile-lib/batik-all-1.11.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/build.gradle b/build.gradle
index 5e9c99fe1e..454b8a4bee 100644
--- a/build.gradle
+++ b/build.gradle
@@ -93,7 +93,7 @@ subprojects {
version = '4.1.1-SNAPSHOT'
ext {
- japicmpversion = '4.0.0'
+ japicmpversion = '4.1.0'
}
tasks.withType(JavaCompile) {
diff --git a/doap_POI.rdf b/doap_POI.rdf
index 88ba48f04d..182a3816d0 100644
--- a/doap_POI.rdf
+++ b/doap_POI.rdf
@@ -37,6 +37,13 @@
<category rdf:resource="https://projects.apache.org/category/library" />
<release>
<Version>
+ <name>Apache POI 4.1.0</name>
+ <created>2019-04-08</created>
+ <revision>4.1.0</revision>
+ </Version>
+ </release>
+ <release>
+ <Version>
<name>Apache POI 4.0.1</name>
<created>2018-12-03</created>
<revision>4.0.1</revision>
diff --git a/osgi/build.xml b/osgi/build.xml
index 1ffbe594f3..d6e8c3d833 100644
--- a/osgi/build.xml
+++ b/osgi/build.xml
@@ -26,7 +26,7 @@ under the License.
<!-- TODO Import these from the parent build file -->
<property name="repository.m2" value="http://repo1.maven.org"/>
- <property name="version.id" value="4.0.1-SNAPSHOT"/>
+ <property name="version.id" value="4.1.1-SNAPSHOT"/>
<property name="dist.dir" value="build/dist"/>
<!-- jars in the /lib directory, see the fetch-bundle-jars target-->
diff --git a/src/examples/groovy/build.gradle b/src/examples/groovy/build.gradle
index d6c3eb9bd6..b7047e3bd5 100644
--- a/src/examples/groovy/build.gradle
+++ b/src/examples/groovy/build.gradle
@@ -23,8 +23,8 @@ repositories {
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.13'
- compile 'org.apache.poi:poi:4.0.0'
- compile 'org.apache.poi:poi-ooxml:4.0.0'
+ compile 'org.apache.poi:poi:4.1.0'
+ compile 'org.apache.poi:poi-ooxml:4.1.0'
}
// Our files are in the current directory
diff --git a/src/examples/scala/build.sbt b/src/examples/scala/build.sbt
index ed267dbccc..d290595161 100644
--- a/src/examples/scala/build.sbt
+++ b/src/examples/scala/build.sbt
@@ -17,7 +17,7 @@
// Add the POI core and OOXML support dependencies into your build.sbt
libraryDependencies ++= Seq(
- "org.apache.poi" % "poi" % "4.0.0",
- "org.apache.poi" % "poi-ooxml" % "4.0.0",
- "org.apache.poi" % "poi-ooxml-schemas" "4.0.0",
+ "org.apache.poi" % "poi" % "4.1.0",
+ "org.apache.poi" % "poi-ooxml" % "4.1.0",
+ "org.apache.poi" % "poi-ooxml-schemas" "4.1.0",
)