diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-03-19 13:17:53 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-03-19 13:17:53 +0000 |
commit | 17899fc75b27cfb8ca001dd580ba9549b03646e4 (patch) | |
tree | 8b3ec8df2a96d9fd0e89d4fb74597e691f247ec2 /poi-examples | |
parent | 9f0fe6139e9e3a490a7471961f259ffeb1341b2d (diff) | |
download | poi-17899fc75b27cfb8ca001dd580ba9549b03646e4.tar.gz poi-17899fc75b27cfb8ca001dd580ba9549b03646e4.zip |
temporary hack to build to see if the gradle toolchain logic is what is breaking all our https://ci-builds.apache.org/ builds for Java 8
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1908515 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-examples')
-rw-r--r-- | poi-examples/build.gradle | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/poi-examples/build.gradle b/poi-examples/build.gradle index ed6ae97c92..43d79bf494 100644 --- a/poi-examples/build.gradle +++ b/poi-examples/build.gradle @@ -51,6 +51,7 @@ final List MODULE_COMPILE_PATH = sourceSets.main.compileClasspath.findAll{ it.pa task compileJava9(type: JavaCompile) { dependsOn 'compileJava', ':poi-ooxml:jar', ':poi-scratchpad:jar' + onlyIf {jdkVersion > 8} javaCompiler = javaToolchains.compilerFor { languageVersion = JavaLanguageVersion.of(Math.max(11, jdkVersion)) |