Author: fanningpj
Date: Thu May 11 11:22:19 2023
New Revision: 1909749

URL: http://svn.apache.org/viewvc?rev=1909749&view=rev
Log:
don't run integration tests in Java 8 (they hang on 
https://ci-builds.apache.org/)

Modified:
    poi/trunk/poi-integration/build.gradle

Modified: poi/trunk/poi-integration/build.gradle
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi-integration/build.gradle?rev=1909749&r1=1909748&r2=1909749&view=diff
==============================================================================
--- poi/trunk/poi-integration/build.gradle (original)
+++ poi/trunk/poi-integration/build.gradle Thu May 11 11:22:19 2023
@@ -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 += [



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to