]> source.dussan.org Git - poi.git/commitdiff
Update site source for 4.1.0, prep build for 4.1.1 (via ant task)
authorGreg Woolsey <gwoolsey@apache.org>
Tue, 9 Apr 2019 15:57:25 +0000 (15:57 +0000)
committerGreg Woolsey <gwoolsey@apache.org>
Tue, 9 Apr 2019 15:57:25 +0000 (15:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1857217 13f79535-47bb-0310-9956-ffa450edef68

.classpath
build.gradle
doap_POI.rdf
osgi/build.xml
src/examples/groovy/build.gradle
src/examples/scala/build.sbt

index b5dae4cbff9ba47347fc358645d5b59cca7528bb..d3744e86e8ec90ca2dfc6e510576b1f93cb1b7da 100644 (file)
@@ -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>
index 5e9c99fe1e35511d8be80ddc3750eeebfd000c50..454b8a4bee3e42c07550028097eca9cdb3a74b98 100644 (file)
@@ -93,7 +93,7 @@ subprojects {
         
     version = '4.1.1-SNAPSHOT'
     ext {
-        japicmpversion = '4.0.0'
+        japicmpversion = '4.1.0'
     }
 
     tasks.withType(JavaCompile) {
index 88ba48f04de27965956182848df9d34c5376c099..182a3816d0a78f87b3bf1e4e83444077f57488fa 100644 (file)
     <programming-language>Java</programming-language>
     <category rdf:resource="https://projects.apache.org/category/content" />
     <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>
index 1ffbe594f33faf9eb1e29f9e82699dd2d01a2bea..d6e8c3d833365b4a61f4d1e578cf5f44c87546c2 100644 (file)
@@ -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-->
index d6c3eb9bd6b23f0340f323bc373b113df3a83ace..b7047e3bd53f834379a702e49f11e89d8e8f164a 100644 (file)
@@ -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
index ed267dbccc6ea2b36143e8b32ad728e4194eb887..d29059516175c2d088d333b5f32ba1f802814b12 100644 (file)
@@ -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",
 )