We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8fc651 commit a3b224dCopy full SHA for a3b224d
2 files changed
build.gradle
@@ -79,6 +79,10 @@ subprojects {
79
}
80
81
82
+tasks.withType(JavaCompile).configureEach {
83
+ options.fork = true
84
+}
85
+
86
task copyToParent(type: Copy) {
87
into "$buildDir/libs"
88
subprojects {
framework/build.gradle
@@ -157,6 +157,11 @@ test {
157
forkEvery = 100
158
jvmArgs "-XX:MetaspaceSize=128m","-XX:MaxMetaspaceSize=256m", "-XX:+UseG1GC"
159
160
+ maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
161
+ if (!project.hasProperty("createReports")) {
162
+ reports.html.enabled = false
163
+ reports.junitXml.enabled = false
164
+ }
165
166
167
task stest(type: Test) {
0 commit comments