diff options
author | PJ Fanning <fanningpj@apache.org> | 2022-12-25 23:56:32 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2022-12-25 23:56:32 +0000 |
commit | edee60d87a0f3b6d54d056a8f63dd42a386eb593 (patch) | |
tree | 77c547b6dc7b02190015c2049e0849dcecd97d7d /poi-examples | |
parent | 664fe668b7e0d0b82102a9b5b02894f700ea6401 (diff) | |
download | poi-edee60d87a0f3b6d54d056a8f63dd42a386eb593.tar.gz poi-edee60d87a0f3b6d54d056a8f63dd42a386eb593.zip |
rebuild module-info.class files even if Java8 used
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1906207 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-examples')
-rw-r--r-- | poi-examples/build.gradle | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/poi-examples/build.gradle b/poi-examples/build.gradle index 40101428ab..c6916d90ea 100644 --- a/poi-examples/build.gradle +++ b/poi-examples/build.gradle @@ -59,10 +59,11 @@ task compileJava9(type: JavaCompile) { dependsOn 'compileJava', ':poi-ooxml:jar', ':poi-scratchpad:jar' javaCompiler = javaToolchains.compilerFor { - languageVersion = JavaLanguageVersion.of(jdkVersion) + languageVersion = JavaLanguageVersion.of(Math.max(11, jdkVersion)) if (jdkVendor != '') vendor = JvmVendorSpec.matching(jdkVendor) } - + sourceCompatibility = 1.9 + targetCompatibility = 1.9 destinationDirectory = file(JAVA9_OUT + VERSIONS9) source = file(JAVA9_SRC) classpath = files() @@ -70,11 +71,6 @@ task compileJava9(type: JavaCompile) { '--patch-module', "${MODULE_NAME}=${sourceSets.main.output.classesDirs.asPath}", '--module-path', files(MODULE_COMPILE_PATH).asPath ] - - - onlyIf { - jdkVersion > 8 - } } task cacheJava9(type: Copy) { |