diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-05-11 11:22:19 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-05-11 11:22:19 +0000 |
commit | f57e10eb0e6a37e7fde9cd09e0413b1b7739a003 (patch) | |
tree | 99c8f1dc2729307d03ecc4cf32ad570ad8361e4e | |
parent | 338e97f87caee5aa5d387c23f365cb3cd21283d2 (diff) | |
download | poi-f57e10eb0e6a37e7fde9cd09e0413b1b7739a003.tar.gz poi-f57e10eb0e6a37e7fde9cd09e0413b1b7739a003.zip |
don't run integration tests in Java 8 (they hang on https://ci-builds.apache.org/)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1909749 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | poi-integration/build.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index 93a39df1c9..95f8c1d1dc 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -139,10 +139,16 @@ artifacts { test { // exclude these from the normal test-run exclude '**/*FileHandler.class' + if (jdkVersion == 8) { + exclude '**/*.class' + } dependsOn { testJar } systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true' + if (jdkVersion == 8) { + systemProperties['sun.java2d.renderer'] = 'sun.java2d.marlin.MarlinRenderingEngine' + } doFirst { jvmArgs += [ |