diff --git a/spring-data-geode/spring-data-geode.gradle b/spring-data-geode/spring-data-geode.gradle index 6bcf9bf3..e930e112 100644 --- a/spring-data-geode/spring-data-geode.gradle +++ b/spring-data-geode/spring-data-geode.gradle @@ -70,8 +70,10 @@ dependencies { } test { + + forkEvery = 1 + maxParallelForks = 8 //include "**/*Tests.java", "**/*Test.java" - maxParallelForks = 1 systemProperties['java.util.logging.config.file'] = "${project.projectDir}/src/test/resources/java-util-logging.properties" systemProperties['gemfire.disableShutdownHook'] = "true" @@ -79,4 +81,5 @@ test { systemProperties['spring.profiles.active'] = "apache-geode" useJUnitPlatform() + }