Browse Source

Update site source for 4.1.0, prep build for 4.1.1 (via ant task)

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1857217 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_1_1
Greg Woolsey 5 years ago
parent
commit
362a99a60b
6 changed files with 15 additions and 7 deletions
  1. 1
    0
      .classpath
  2. 1
    1
      build.gradle
  3. 7
    0
      doap_POI.rdf
  4. 1
    1
      osgi/build.xml
  5. 2
    2
      src/examples/groovy/build.gradle
  6. 3
    3
      src/examples/scala/build.sbt

+ 1
- 0
.classpath View 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>

+ 1
- 1
build.gradle View File

@@ -93,7 +93,7 @@ subprojects {
version = '4.1.1-SNAPSHOT'
ext {
japicmpversion = '4.0.0'
japicmpversion = '4.1.0'
}

tasks.withType(JavaCompile) {

+ 7
- 0
doap_POI.rdf View File

@@ -35,6 +35,13 @@
<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>

+ 1
- 1
osgi/build.xml View 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-->

+ 2
- 2
src/examples/groovy/build.gradle View 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

+ 3
- 3
src/examples/scala/build.sbt View 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",
)

Loading…
Cancel
Save