diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-12-27 18:45:15 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-12-27 18:45:15 +0000 |
commit | 78516f50dc46beee5b6deb1edd678a91eb128f79 (patch) | |
tree | d1c799b72679423205d6d856b7718a089c53efa5 /poi-integration/build.gradle | |
parent | 98d51e41398b658df158492a9b67a4b5d2ff2983 (diff) | |
download | poi-78516f50dc46beee5b6deb1edd678a91eb128f79.tar.gz poi-78516f50dc46beee5b6deb1edd678a91eb128f79.zip |
try to get rid of cached module-info classes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1906232 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-integration/build.gradle')
-rw-r--r-- | poi-integration/build.gradle | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index 94db71b5aa..9b46ca3940 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -29,9 +29,7 @@ configurations { sourceSets { test { - if (jdkVersion > 8) { - output.dir(TEST9_OUT, builtBy: 'cacheTest9') - } + output.dir(TEST9_OUT, builtBy: 'compileTest9') if (IBMVM) { java { exclude '**/HeapDump**' @@ -121,13 +119,6 @@ task compileTest9(type: JavaCompile) { } -task cacheTest9(type: Copy) { - dependsOn 'compileTest9' - - from(file(TEST9_OUT + VERSIONS9)) - into(TEST9_SRC) -} - jar { destinationDirectory = file("../build/dist/maven/${project.archivesBaseName}") @@ -138,19 +129,13 @@ jar { // Create a separate jar for test-code to depend on it in other projects // See http://stackoverflow.com/questions/5144325/gradle-test-dependency -task testJar(type: Jar, dependsOn: [ testClasses, cacheTest9 ] ) { +task testJar(type: Jar, dependsOn: [ testClasses, compileTest9 ] ) { destinationDirectory = file("../build/dist/maven/${project.archivesBaseName}-tests") classifier 'tests' // ignore second module-info.class from main duplicatesStrategy = 'exclude' - if (jdkVersion == 8) { - into('META-INF/versions/9') { - from TEST9_SRC include '*.class' - } - } - from sourceSets.test.output + sourceSets.main.output manifest { |