Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ plugins {

// BEGIN ALL PROJECTS //
allprojects {
tasks.withType(Test).configureEach {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
if (!project.hasProperty("createReports")) {
reports.html.required = false
reports.junitXml.required = false
}
}

apply plugin: 'java'

sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down Expand Up @@ -366,4 +374,4 @@ project('kcbq-confluent') {
}
}
}
// END INDIVIDUAL PROJECTS
// END INDIVIDUAL PROJECTS