From edee60d87a0f3b6d54d056a8f63dd42a386eb593 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 25 Dec 2022 23:56:32 +0000 Subject: 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 --- poi-scratchpad/build.gradle | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'poi-scratchpad/build.gradle') diff --git a/poi-scratchpad/build.gradle b/poi-scratchpad/build.gradle index 7e53bba708..baa3875d80 100644 --- a/poi-scratchpad/build.gradle +++ b/poi-scratchpad/build.gradle @@ -65,9 +65,11 @@ task compileJava9(type: JavaCompile) { dependsOn 'compileJava', ':poi: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() @@ -75,10 +77,6 @@ task compileJava9(type: JavaCompile) { '--patch-module', "${MODULE_NAME}=${sourceSets.main.output.classesDirs.asPath}", '--module-path', files(MAIN_MODULE_PATH).asPath ] - - onlyIf { - jdkVersion > 8 - } } task cacheJava9(type: Copy) { @@ -92,9 +90,11 @@ task compileTest9(type: JavaCompile) { dependsOn 'compileTestJava', ':poi: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(TEST9_OUT + VERSIONS9) source = file(TEST9_SRC) options.compilerArgs = [ @@ -102,10 +102,6 @@ task compileTest9(type: JavaCompile) { '--module-path', files(TEST_MODULE_PATH).asPath ] classpath = files() - - onlyIf { - jdkVersion > 8 - } } -- cgit v1.2.3