We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee2950 commit 1bc74e1Copy full SHA for 1bc74e1
build.gradle
@@ -31,7 +31,13 @@ if (JavaVersion.current().isJava8Compatible()) {
31
}
32
33
allprojects {
34
-
+ tasks.withType(Test).configureEach {
35
+ maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
36
+ if (!project.hasProperty("createReports")) {
37
+ reports.html.required = false
38
+ reports.junitXml.required = false
39
+ }
40
41
apply plugin: "jacoco"
42
43
jacoco {
0 commit comments