diff --git a/.classpath b/.classpath
index b5dae4cbff..d3744e86e8 100644
--- a/.classpath
+++ b/.classpath
@@ -44,5 +44,6 @@
+
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
@@ -35,6 +35,13 @@
Java
+
+
+ Apache POI 4.1.0
+ 2019-04-08
+ 4.1.0
+
+
Apache POI 4.0.1
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.
-
+
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",
)