aboutsummaryrefslogtreecommitdiffstats
path: root/src/examples
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2018-09-07 19:25:02 +0000
committerAndreas Beeker <kiwiwings@apache.org>2018-09-07 19:25:02 +0000
commitea65344fd12b0b6a10a3d8ec7afd1b87f593ff87 (patch)
treec35c6d9703af017443e356c66d6baf50507472a3 /src/examples
parent8726e046a0dcf7bf88192efa70aedae4706c82c8 (diff)
downloadpoi-ea65344fd12b0b6a10a3d8ec7afd1b87f593ff87.tar.gz
poi-ea65344fd12b0b6a10a3d8ec7afd1b87f593ff87.zip
update 3.17 leftovers and provide a new build target to update those in the next release
remove final / beta tags, as we (try to) use semver now git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1840318 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/examples')
-rw-r--r--src/examples/groovy/build.gradle4
-rw-r--r--src/examples/scala/build.sbt6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/examples/groovy/build.gradle b/src/examples/groovy/build.gradle
index 8ca896c75b..d6c3eb9bd6 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:3.17'
- compile 'org.apache.poi:poi-ooxml:3.17'
+ compile 'org.apache.poi:poi:4.0.0'
+ compile 'org.apache.poi:poi-ooxml:4.0.0'
}
// Our files are in the current directory
diff --git a/src/examples/scala/build.sbt b/src/examples/scala/build.sbt
index f2e51f58fa..ed267dbccc 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" % "3.17",
- "org.apache.poi" % "poi-ooxml" % "3.17",
- "org.apache.poi" % "poi-ooxml-schemas" "3.17",
+ "org.apache.poi" % "poi" % "4.0.0",
+ "org.apache.poi" % "poi-ooxml" % "4.0.0",
+ "org.apache.poi" % "poi-ooxml-schemas" "4.0.0",
)