2021-04-07 21:40:33 +00:00
|
|
|
/* ====================================================================
|
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
==================================================================== */
|
|
|
|
|
|
|
|
|
|
import java.util.regex.Pattern
|
|
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
|
tests
|
2021-04-11 20:17:06 +00:00
|
|
|
javadocs
|
2021-04-07 21:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
|
main {
|
2022-12-27 18:45:15 +00:00
|
|
|
output.dir(JAVA9_OUT, builtBy: 'compileJava9')
|
2021-09-16 19:25:43 +00:00
|
|
|
java {
|
|
|
|
|
// also include the generated Version.java
|
|
|
|
|
srcDirs += 'build/generated-sources'
|
|
|
|
|
}
|
2021-04-07 21:40:33 +00:00
|
|
|
}
|
|
|
|
|
test {
|
2022-12-27 18:45:15 +00:00
|
|
|
output.dir(TEST9_OUT, builtBy: 'compileTest9')
|
2021-04-07 21:40:33 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
api "commons-codec:commons-codec:${commonsCodecVersion}"
|
2025-04-23 19:44:41 +00:00
|
|
|
api 'org.apache.commons:commons-collections4:4.5.0'
|
2021-04-07 21:40:33 +00:00
|
|
|
api "org.apache.commons:commons-math3:${commonsMathVersion}"
|
2021-05-14 00:37:50 +00:00
|
|
|
api "commons-io:commons-io:${commonsIoVersion}"
|
2023-09-06 15:12:52 +00:00
|
|
|
api 'com.zaxxer:SparseBitSet:1.3'
|
2021-04-07 21:40:33 +00:00
|
|
|
|
2021-10-25 21:03:10 +00:00
|
|
|
testImplementation 'org.reflections:reflections:0.10.2'
|
2024-08-30 17:37:58 +00:00
|
|
|
testImplementation 'org.apache.ant:ant:1.10.15'
|
2021-04-07 21:40:33 +00:00
|
|
|
|
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
|
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
|
2021-11-25 10:31:50 +00:00
|
|
|
testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}"
|
2021-11-25 10:05:00 +00:00
|
|
|
|
2021-05-21 21:22:40 +00:00
|
|
|
// needed for locating the external references
|
2021-04-11 20:17:06 +00:00
|
|
|
javadocs project(':poi-ooxml')
|
|
|
|
|
javadocs project(':poi-scratchpad')
|
2021-04-07 21:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
2021-09-16 19:25:43 +00:00
|
|
|
// generate and compile the file Version.java file
|
2025-01-20 20:05:58 +00:00
|
|
|
tasks.register('generateVersionJava') {
|
2021-09-16 19:25:43 +00:00
|
|
|
//dependsOn ':poi-ooxml:build', ':poi-integration:build', ':poi-excelant:build'
|
|
|
|
|
|
|
|
|
|
File fileIn = file("src/main/version/Version.java.template")
|
|
|
|
|
File fileOut = file("build/generated-sources/org/apache/poi/Version.java")
|
|
|
|
|
|
|
|
|
|
inputs.file fileIn
|
|
|
|
|
outputs.file fileOut
|
|
|
|
|
|
|
|
|
|
doLast {
|
|
|
|
|
String content = fileIn.text
|
|
|
|
|
|
|
|
|
|
content = content.replace("@VERSION@", version)
|
|
|
|
|
|
|
|
|
|
fileOut.write content
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
compileJava.dependsOn 'generateVersionJava'
|
|
|
|
|
|
2021-04-07 21:40:33 +00:00
|
|
|
final String MODULE_NAME = 'org.apache.poi.poi'
|
|
|
|
|
final Pattern MODULE_NOT_REGEX = ~'(poi[/\\\\][^/\\\\]+$|batik-script)'
|
|
|
|
|
final Pattern MODULE_REGEX = ~'\\.jar$'
|
|
|
|
|
final List MODULE_PATH = sourceSets.test.runtimeClasspath.findAll{ it.path =~ MODULE_REGEX && !(it.path =~ MODULE_NOT_REGEX) }.collect{ it.parent }.unique()
|
|
|
|
|
|
2025-01-20 20:05:58 +00:00
|
|
|
tasks.register('compileJava9', JavaCompile) {
|
2021-04-07 21:40:33 +00:00
|
|
|
dependsOn 'compileJava'
|
|
|
|
|
|
2022-02-21 22:57:03 +00:00
|
|
|
javaCompiler = javaToolchains.compilerFor {
|
2022-12-25 23:56:32 +00:00
|
|
|
languageVersion = JavaLanguageVersion.of(Math.max(11, jdkVersion))
|
2022-02-21 22:57:03 +00:00
|
|
|
}
|
2025-11-15 11:34:52 +01:00
|
|
|
sourceCompatibility = 11
|
|
|
|
|
targetCompatibility = 11
|
2021-04-07 21:40:33 +00:00
|
|
|
destinationDirectory = file(JAVA9_OUT + VERSIONS9)
|
|
|
|
|
source = file(JAVA9_SRC)
|
|
|
|
|
classpath = files()
|
|
|
|
|
options.compilerArgs = [
|
2025-01-20 20:05:58 +00:00
|
|
|
'--patch-module', "${MODULE_NAME}=${sourceSets.main.output.classesDirs.asPath}",
|
|
|
|
|
'--module-path', sourceSets.main.compileClasspath.asPath
|
2021-04-07 21:40:33 +00:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-20 20:05:58 +00:00
|
|
|
tasks.register('compileTest9', JavaCompile) {
|
2021-04-07 21:40:33 +00:00
|
|
|
dependsOn 'compileTestJava'
|
|
|
|
|
|
2022-02-21 22:57:03 +00:00
|
|
|
javaCompiler = javaToolchains.compilerFor {
|
2022-12-25 23:56:32 +00:00
|
|
|
languageVersion = JavaLanguageVersion.of(Math.max(11, jdkVersion))
|
2022-02-21 22:57:03 +00:00
|
|
|
}
|
2025-11-15 11:34:52 +01:00
|
|
|
sourceCompatibility = 11
|
|
|
|
|
targetCompatibility = 11
|
2021-04-07 21:40:33 +00:00
|
|
|
destinationDirectory = file(TEST9_OUT + VERSIONS9)
|
|
|
|
|
source = file(TEST9_SRC)
|
|
|
|
|
options.compilerArgs = [
|
2025-01-20 20:05:58 +00:00
|
|
|
'--patch-module', "${MODULE_NAME}=${(sourceSets.main.output.classesDirs + sourceSets.test.output.classesDirs).asPath}",
|
|
|
|
|
'--module-path', files(MODULE_PATH).asPath
|
2021-04-07 21:40:33 +00:00
|
|
|
]
|
|
|
|
|
classpath = files()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
jar {
|
2022-12-27 18:45:15 +00:00
|
|
|
dependsOn compileJava9
|
2021-04-07 21:40:33 +00:00
|
|
|
|
|
|
|
|
manifest {
|
|
|
|
|
attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create a separate jar for test-code to depend on it in other projects
|
|
|
|
|
// See http://stackoverflow.com/questions/5144325/gradle-test-dependency
|
2022-12-27 18:45:15 +00:00
|
|
|
task testJar(type: Jar, dependsOn: [ testClasses, compileTest9 ]) {
|
2025-12-18 08:33:13 +01:00
|
|
|
destinationDirectory = file("../build/dist/maven/${base.archivesName.get()}-tests")
|
2021-04-07 21:40:33 +00:00
|
|
|
|
2023-02-22 20:08:44 +00:00
|
|
|
setArchiveClassifier 'tests'
|
2021-04-07 21:40:33 +00:00
|
|
|
// ignore second module-info.class from main
|
2025-01-20 20:05:58 +00:00
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
2021-04-07 21:40:33 +00:00
|
|
|
|
2022-01-22 21:34:35 +00:00
|
|
|
from sourceSets.test.output + sourceSets.main.output
|
2021-04-07 21:40:33 +00:00
|
|
|
|
|
|
|
|
manifest {
|
|
|
|
|
attributes('Automatic-Module-Name': MODULE_NAME, 'Multi-Release': 'true')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 14:25:38 +00:00
|
|
|
javadoc {
|
2025-12-18 08:33:13 +01:00
|
|
|
dependsOn configurations.javadocs.dependencies.collect{ ':' + project.project(it.path).name + ':compileJava' }
|
2021-05-21 21:22:40 +00:00
|
|
|
|
2021-09-23 19:03:06 +00:00
|
|
|
doFirst {
|
|
|
|
|
options {
|
2025-12-18 08:33:13 +01:00
|
|
|
classpath += files(configurations.javadocs.dependencies.collect{ project.project(it.path).sourceSets.main.output.classesDirs })
|
2021-09-23 19:03:06 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-04-15 14:25:38 +00:00
|
|
|
}
|
|
|
|
|
|
2021-10-25 22:29:10 +00:00
|
|
|
javadocJar {
|
|
|
|
|
metaInf {
|
|
|
|
|
from("$projectDir/../legal/LICENSE")
|
|
|
|
|
from("$projectDir/../legal/NOTICE")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-25 22:50:03 +00:00
|
|
|
sourcesJar {
|
2021-11-07 14:59:48 +00:00
|
|
|
dependsOn generateVersionJava
|
2021-10-25 22:50:03 +00:00
|
|
|
metaInf {
|
|
|
|
|
from("$projectDir/../legal/LICENSE")
|
|
|
|
|
from("$projectDir/../legal/NOTICE")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 14:25:38 +00:00
|
|
|
artifacts {
|
|
|
|
|
tests testJar
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-07 21:40:33 +00:00
|
|
|
test {
|
2021-04-15 14:25:38 +00:00
|
|
|
dependsOn { testJar }
|
2021-04-07 21:40:33 +00:00
|
|
|
|
2021-08-20 17:07:36 +00:00
|
|
|
systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true'
|
|
|
|
|
|
2021-04-07 21:40:33 +00:00
|
|
|
doFirst {
|
2025-11-15 11:26:19 +01:00
|
|
|
jvmArgs += [
|
|
|
|
|
'--add-modules', MODULE_NAME,
|
|
|
|
|
'--module-path', '../build/dist/maven/poi-tests' + File.pathSeparator + files(MODULE_PATH).asPath,
|
|
|
|
|
]
|
2021-04-07 21:40:33 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
|
publications {
|
|
|
|
|
POI(MavenPublication) {
|
|
|
|
|
pom {
|
2021-05-21 21:22:40 +00:00
|
|
|
name = 'Apache POI - Common'
|
2021-04-07 21:40:33 +00:00
|
|
|
description = 'Apache POI - Java API To Access Microsoft Format Files'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-16 19:25:43 +00:00
|
|
|
}
|
2022-12-21 11:23:43 +00:00
|
|
|
|
|
|
|
|
cyclonedxBom {
|
|
|
|
|
// includeConfigs is the list of configuration names to include when generating the BOM (leave empty to include every configuration)
|
|
|
|
|
includeConfigs = ["runtimeClasspath"]
|
|
|
|
|
// skipConfigs is a list of configuration names to exclude when generating the BOM
|
|
|
|
|
//skipConfigs = ["compileClasspath", "testCompileClasspath"]
|
|
|
|
|
// Specified the type of project being built. Defaults to 'library'
|
|
|
|
|
projectType = "library"
|
|
|
|
|
// Specified the version of the CycloneDX specification to use. Defaults to 1.4.
|
|
|
|
|
schemaVersion = "1.4"
|
|
|
|
|
// Boms destination directory (defaults to build/reports)
|
|
|
|
|
destination = file("build/reports")
|
|
|
|
|
// The file name for the generated BOMs (before the file format suffix). Defaults to 'bom'
|
|
|
|
|
outputName = "poi-${project.version}.bom"
|
|
|
|
|
// The file format generated, can be xml, json or all for generating both
|
|
|
|
|
outputFormat = "all"
|
|
|
|
|
// Exclude BOM Serial Number
|
|
|
|
|
includeBomSerialNumber = true
|
|
|
|
|
}
|