Skip to content

Commit da63b58

Browse files
committed
Improve GRADLE build Performance
1 parent 2ee2950 commit da63b58

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,19 @@ if (JavaVersion.current().isJava8Compatible()) {
3131
}
3232

3333
allprojects {
34+
tasks.withType(Test).configureEach {
35+
maxParallelForks = 4
36+
}
37+
38+
tasks.withType(Test).configureEach {
39+
forkEvery = 100
40+
}
41+
42+
tasks.withType(Test).configureEach {
43+
reports.html.required = false
44+
reports.junitXml.required = false
45+
}
46+
3447

3548
apply plugin: "jacoco"
3649

0 commit comments

Comments
 (0)