You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2023/03/22 23:12:28 UTC

svn commit: r1908652 - /poi/trunk/build.gradle

Author: fanningpj
Date: Wed Mar 22 23:12:28 2023
New Revision: 1908652

URL: http://svn.apache.org/viewvc?rev=1908652&view=rev
Log:
try to run tests serially due to jdk 8 build issues

Modified:
    poi/trunk/build.gradle

Modified: poi/trunk/build.gradle
URL: http://svn.apache.org/viewvc/poi/trunk/build.gradle?rev=1908652&r1=1908651&r2=1908652&view=diff
==============================================================================
--- poi/trunk/build.gradle (original)
+++ poi/trunk/build.gradle Wed Mar 22 23:12:28 2023
@@ -38,6 +38,7 @@ plugins {
     id 'de.thetaphi.forbiddenapis' version '3.4'
     id 'org.sonarqube' version '4.0.0.2929'
     id 'org.cyclonedx.bom' version '1.7.4'
+    id 'com.adarshr.test-logger' version '3.2.0'
 }
 
 repositories {
@@ -113,6 +114,7 @@ subprojects {
     apply plugin: 'de.thetaphi.forbiddenapis'
     apply plugin: 'com.github.spotbugs'
     apply plugin: 'org.cyclonedx.bom'
+    apply plugin: 'com.adarshr.test-logger'
 
     ext {
         bouncyCastleVersion = '1.72'
@@ -304,11 +306,11 @@ subprojects {
 
             jvmArgs += [
                 // Strictly serial
-                // '-Djunit.jupiter.execution.parallel.enabled=false',
+                '-Djunit.jupiter.execution.parallel.enabled=false',
 
                 // OR parallel on 2 threads
-                '-Djunit.jupiter.execution.parallel.config.strategy=fixed',
-                '-Djunit.jupiter.execution.parallel.config.fixed.parallelism=2'
+                //'-Djunit.jupiter.execution.parallel.config.strategy=fixed',
+                //'-Djunit.jupiter.execution.parallel.config.fixed.parallelism=2'
             ]
             maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
         } else {
@@ -548,7 +550,6 @@ subprojects {
     spotbugs {
         ignoreFailures = true
         showStackTraces = false
-        showProgress = true
         maxHeapSize = '1g'
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org