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 | |
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')
-rw-r--r-- | poi/build.gradle | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/poi/build.gradle b/poi/build.gradle index bf54b17b0a..211ac58ddd 100644 --- a/poi/build.gradle +++ b/poi/build.gradle @@ -97,6 +97,7 @@ task compileJava9(type: JavaCompile) { '--module-path', sourceSets.main.compileClasspath.asPath ] } +compileJava9.onlyIf {jdkVersion > 8} task compileTest9(type: JavaCompile) { dependsOn 'compileTestJava' @@ -114,6 +115,7 @@ task compileTest9(type: JavaCompile) { ] classpath = files() } +compileTest9.onlyIf {jdkVersion > 8} jar { dependsOn compileJava9 |