diff options
Diffstat (limited to 'poi-ooxml-full/build.gradle')
-rw-r--r-- | poi-ooxml-full/build.gradle | 29 |
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" |