}
dependencies {
- classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.1.1'
+ classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3'
classpath 'de.thetaphi:forbiddenapis:3.1'
classpath 'gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:4.7.3'
}
}
dependencies {
- antLibs("org.junit.jupiter:junit-jupiter:5.7.1")
- antLibs("org.apache.ant:ant-junitlauncher:1.10.9")
+ antLibs("org.junit.jupiter:junit-jupiter:5.7.2")
+ antLibs("org.apache.ant:ant-junitlauncher:1.10.11")
}
ant.taskdef(name: "junit",
apply plugin: 'de.thetaphi.forbiddenapis'
apply plugin: 'com.github.spotbugs'
- version = '5.0.1-SNAPSHOT'
+ version = '5.1.0'
ext {
bouncyCastleVersion = '1.69'
commonsCodecVersion = '1.15'
commonsCompressVersion = '1.21'
commonsIoVersion = '2.11.0'
commonsMathVersion = '3.6.1'
- junitVersion = '5.7.1'
- log4jVersion = '2.14.0'
- mockitoVersion = '3.6.0'
+ junitVersion = '5.7.2'
+ log4jVersion = '2.14.1'
+ mockitoVersion = '3.12.4'
hamcrestVersion = '2.2'
xmlbeansVersion = '5.0.1'
batikVersion = '1.14'
ignoreFailures = true
showStackTraces = false
}
+
+ build {
+ dependsOn 'signPOIPublication'
+ }
}
// initial try to provide a combined JavaDoc, grouping is still missing here, though!
<groupId>org.apache.poi</groupId>
<artifactId>poi-bundle</artifactId>
<packaging>bundle</packaging>
- <version>5.0.1-SNAPSHOT</version>
+ <version>5.1.0</version>
<name>Apache POI OSGi bundle</name>
<properties>
}
dependencies {
- api 'org.apache.ant:ant:1.10.9'
+ api 'org.apache.ant:ant:1.10.11'
api project(':poi-ooxml')
api project(path: ':poi-ooxml', configuration: 'archives')
testImplementation(project(path: ':poi-ooxml', configuration: 'tests')) {
exclude group: 'org.apache.poi', module: 'poi-scratchpad'
}
- testImplementation 'com.google.guava:guava:30.0-jre'
- testImplementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.14.1'
+ testImplementation 'com.google.guava:guava:30.1.1-jre'
+ testImplementation "org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}"
}
final String MODULE_NAME = 'org.apache.poi.excelant'
}
dependencies {
- testImplementation 'org.apache.ant:ant:1.10.9'
+ testImplementation 'org.apache.ant:ant:1.10.11'
testImplementation 'org.apache.commons:commons-collections4:4.4'
- testImplementation 'com.google.guava:guava:30.0-jre'
+ testImplementation 'com.google.guava:guava:30.1.1-jre'
testImplementation(project(':poi-ooxml')) {
if (NO_SCRATCHPAD) {
}
}
testImplementation project(path: ':poi-ooxml-lite-agent', configuration: 'archives')
- testImplementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.14.1'
+ testImplementation "org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}"
}
final String MODULE_NAME = 'org.apache.poi.stress'
javadocJar.onlyIf { false }
-sourcesJar.onlyIf { false }
\ No newline at end of file
+sourcesJar.onlyIf { false }
+
+generateMetadataFileForPOIPublication.enabled = false
\ No newline at end of file
spotbugsTest.enabled = false
spotbugsMain.enabled = false
-javadoc.enabled = false
\ No newline at end of file
+javadoc.enabled = false
+javadocJar.enabled = false
\ No newline at end of file
}
dependencies {
- api 'net.bytebuddy:byte-buddy:1.10.19'
- api 'net.bytebuddy:byte-buddy-agent:1.10.19'
+ api 'net.bytebuddy:byte-buddy:1.11.13'
+ api 'net.bytebuddy:byte-buddy-agent:1.11.13'
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
}
}
}
+spotbugsMain.enabled = false
+javadoc.enabled = false
+javadocJar.enabled = false
+
new AgentBuilder.Default()
// .with(AgentBuilder.Listener.StreamWriting.toSystemOut())
- .type(named("org.apache.xmlbeans.impl.schema.SchemaTypeSystemImpl$XsbReader"))
+ .type(named("org.apache.xmlbeans.impl.schema.XsbReader"))
.transform((builder, type, cl, m) ->
builder
.constructor(ElementMatchers.any())
}
jar {
- File clazzFile = file("${OOXML_LITE_REPORT}.clazz")
- File xsbsFile = file("${OOXML_LITE_REPORT}.xsb")
- if (clazzFile.exists() && xsbsFile.exists()) {
- List clazz = clazzFile.collect { "${it}.class" }
- List clazzInner = clazzFile.collect { "${it}\$*.class" }
- List xsbs = xsbsFile.collect { "org/apache/poi/schemas/ooxml/system/ooxml/${it}.xsb" }
- includes = clazz + clazzInner + xsbs + ['META-INF/versions/**', 'org/apache/poi/schemas/ooxml/element/**']
- }
+ dependsOn ':poi-ooxml:test', ':poi-integration:test'
destinationDirectory = file("../build/dist/maven/${project.archivesBaseName}")
+ doFirst {
+ File clazzFile = file("${OOXML_LITE_REPORT}.clazz")
+ File xsbsFile = file("${OOXML_LITE_REPORT}.xsb")
+ if (clazzFile.exists() && xsbsFile.exists()) {
+ List clazz = clazzFile.collect { "${it}.class" }
+ List clazzInner = clazzFile.collect { "${it}\$*.class" }
+ List xsbs = xsbsFile.collect { "org/apache/poi/schemas/ooxml/system/ooxml/${it}.xsb" }
+ includes = clazz + clazzInner + xsbs + ['META-INF/versions/**', 'org/apache/poi/schemas/ooxml/element/**']
+ }
+ }
+
if (JavaVersion.current() == JavaVersion.VERSION_1_8) {
into('META-INF/versions/9') {
from JAVA9_SRC include '*.class'
spotbugsTest.enabled = false
spotbugsMain.enabled = false
-javadoc.enabled = false
\ No newline at end of file
+javadoc.enabled = false
+javadocJar.enabled = false
\ No newline at end of file
}
testImplementation project(path:':poi', configuration:'tests')
testImplementation project(path:':poi-ooxml-lite-agent', configuration: 'archives')
- testImplementation 'org.xmlunit:xmlunit-core:2.8.0'
+ testImplementation 'org.xmlunit:xmlunit-core:2.8.2'
testImplementation 'org.reflections:reflections:0.9.12'
- testImplementation 'org.openjdk.jmh:jmh-core:1.26'
- testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:1.26'
- testImplementation 'com.google.guava:guava:30.0-jre'
+ testImplementation 'org.openjdk.jmh:jmh-core:1.32'
+ testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:1.32'
+ testImplementation 'com.google.guava:guava:30.1.1-jre'
// prevent slf4j warnings coming from xmlsec -> slf4j-api 1.7.31 dependency
// see https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/
- testImplementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.14.1'
+ testImplementation "org.apache.logging.log4j:log4j-slf4j-impl:${log4jVersion}"
broken "org.apache.xmlgraphics:batik-script:${batikVersion}"
implementation 'javax.activation:activation:1.1.1'
testImplementation 'org.reflections:reflections:0.9.12'
- testImplementation 'org.apache.ant:ant:1.10.9'
+ testImplementation 'org.apache.ant:ant:1.10.11'
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
<groupId>org.apache.poi</groupId>
<artifactId>poi-parent</artifactId>
<packaging>pom</packaging>
- <version>5.0.1-SNAPSHOT</version>
+ <version>5.1.0</version>
<name>Apache POI - the Java API for Microsoft Documents</name>
<description>Maven build of Apache POI for Sonar checks</description>
<url>https://poi.apache.org/</url>