Skip to content
Closed
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
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ allprojects {
repositories {
mavenCentral()
}

apply plugin: 'idea'
apply plugin: 'org.owasp.dependencycheck'
apply plugin: 'com.github.ben-manes.versions'
Expand Down Expand Up @@ -102,7 +102,7 @@ ext {
mavenUrl = project.hasProperty('mavenUrl') ? project.mavenUrl : bintrayUrl
mavenUsername = project.hasProperty('mavenUsername') ? project.mavenUsername : bintrayUsername
mavenPassword = project.hasProperty('mavenPassword') ? project.mavenPassword : bintrayKey

userShowStandardStreams = project.hasProperty("showStandardStreams") ? showStandardStreams : null

userTestLoggingEvents = project.hasProperty("testLoggingEvents") ? Arrays.asList(testLoggingEvents.split(",")) : null
Expand Down Expand Up @@ -250,7 +250,7 @@ subprojects {
useJUnit {
excludeCategories 'org.apache.kafka.test.IntegrationTest'
}

}

jar {
Expand Down Expand Up @@ -434,8 +434,8 @@ def fineTuneEclipseClasspathFile(eclipse, project) {
if (project.name.equals('core')) {
cp.entries.findAll { it.kind == "src" && it.path.equals("src/test/scala") }*.excludes = ["integration/", "other/", "unit/"]
}
/*
* Set all eclipse build output to go to 'build_eclipse' directory. This is to ensure that gradle and eclipse use different
/*
* Set all eclipse build output to go to 'build_eclipse' directory. This is to ensure that gradle and eclipse use different
* build output directories, and also avoid using the eclpise default of 'bin' which clashes with some of our script directories.
* https://discuss.gradle.org/t/eclipse-generated-files-should-be-put-in-the-same-place-as-the-gradle-generated-files/6986/2
*/
Expand Down Expand Up @@ -598,7 +598,7 @@ project(':core') {
scoverage libs.scoveragePlugin
scoverage libs.scoverageRuntime
}

scoverage {
reportDir = file("${rootProject.buildDir}/scoverage")
highlighting = false
Expand Down