summaryrefslogtreecommitdiffstats
path: root/poi-ooxml-full
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2021-05-21 21:22:40 +0000
committerAndreas Beeker <kiwiwings@apache.org>2021-05-21 21:22:40 +0000
commit7eaca60a1a364ce6e232363d27823e971a992705 (patch)
tree718fc0e7ccd8c4ed50c2dcd579c4df10cc8b9581 /poi-ooxml-full
parentcecab7f573f0cdf9ea74bedcf9b43dc535976e43 (diff)
downloadpoi-7eaca60a1a364ce6e232363d27823e971a992705.tar.gz
poi-7eaca60a1a364ce6e232363d27823e971a992705.zip
activate javadoc lint and fix errors
add signing and checksum generation add slf4j-bridge for tests add dependencies to ooxml-lite fix complex enum classes add override annotations move gradle logic to root build generate javadoc in its own dist directory, because JPMS complains about duplicate modules otherwise git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1890089 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-ooxml-full')
-rw-r--r--poi-ooxml-full/build.gradle29
1 files changed, 0 insertions, 29 deletions
diff --git a/poi-ooxml-full/build.gradle b/poi-ooxml-full/build.gradle
index ea1804a30b..f922a706f1 100644
--- a/poi-ooxml-full/build.gradle
+++ b/poi-ooxml-full/build.gradle
@@ -54,8 +54,6 @@ final List MAIN_MODULE_PATH = sourceSets.main.runtimeClasspath.findAll{ it.path
compileJava {
dependsOn 'generate_beans'
- sourceCompatibility = 8
- targetCompatibility = 8
}
task compileJava9(type: JavaCompile) {
@@ -133,26 +131,6 @@ task generate_beans(dependsOn: copy_xsds) {
}
}
-tasks.withType(Jar) {
- destinationDirectory = file("../build/dist/maven/${project.archivesBaseName}")
-}
-
-javadoc {
- failOnError = true
- maxMemory = "1024M"
- doFirst {
- options {
- if (JavaVersion.current().isJava9Compatible()) {
- addBooleanOption('html5', true)
- }
- links 'https://xmlbeans.apache.org/docs/5.0.0/'
- use = true
- splitIndex = true
- source = "1.8"
- }
- }
-}
-
task sourceJar(type: Jar) {
classifier 'sources'
from sourceSets.main.allJava
@@ -175,11 +153,6 @@ jar {
publishing {
publications {
POI(MavenPublication) {
- artifactId "${project.archivesBaseName}"
-
- from components.java
- artifact tasks.sourceJar
-
pom {
name = 'Apache POI - OOXML schemas (full)'
description =
@@ -189,5 +162,3 @@ publishing {
}
}
}
-
-generatePomFileForPOIPublication.destination = "../build/dist/maven/${project.archivesBaseName}/${project.archivesBaseName}-${project.version}.pom"