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
This commit is contained in:
PJ Fanning 2023-05-11 11:22:19 +00:00
parent 338e97f87c
commit f57e10eb0e
1 changed files with 6 additions and 0 deletions

View File

@ -139,10 +139,16 @@ artifacts {
test { test {
// exclude these from the normal test-run // exclude these from the normal test-run
exclude '**/*FileHandler.class' exclude '**/*FileHandler.class'
if (jdkVersion == 8) {
exclude '**/*.class'
}
dependsOn { testJar } dependsOn { testJar }
systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true' systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true'
if (jdkVersion == 8) {
systemProperties['sun.java2d.renderer'] = 'sun.java2d.marlin.MarlinRenderingEngine'
}
doFirst { doFirst {
jvmArgs += [ jvmArgs += [