diff --git a/build.gradle b/build.gradle index 5ca62780..e67e1a3f 100644 --- a/build.gradle +++ b/build.gradle @@ -7,6 +7,19 @@ plugins { } allprojects { + tasks.withType(Test).configureEach { + maxParallelForks = 4 + } + + tasks.withType(Test).configureEach { + forkEvery = 100 + } + + tasks.withType(Test).configureEach { + reports.html.required = false + reports.junitXml.required = false + } + apply plugin: 'idea' apply plugin: 'eclipse' apply plugin: 'com.peterabeles.gversion' @@ -299,4 +312,4 @@ project(':georegression').compileJava.dependsOn(createVersionFile) wrapper { distributionType = Wrapper.DistributionType.BIN gradleVersion = '6.8.3' -} \ No newline at end of file +}