Skip to content

Commit

Permalink
fix gradle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rdk committed Jan 8, 2025
1 parent 0291c22 commit daf4be5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
buildscript { // for "com.github.ben-manes.versions" plugin
repositories {
maven {
url "https://plugins.gradle.org/m2/"
url = "https://plugins.gradle.org/m2/"
}
}
dependencies {
Expand Down Expand Up @@ -37,7 +37,7 @@ def distroDir = "$projectDir/distro"
repositories {
mavenCentral()
mavenLocal()
maven {url "https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/" }
maven {url = "https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/" }
maven {
url = file('lib/local-mvn-repo')
}
Expand Down Expand Up @@ -119,12 +119,12 @@ test {
}

testLogging {
events "failed" // "standardOut", "standardError", "passed", "skipped"
//events = "failed" // "standardOut", "standardError", "passed", "skipped"

showExceptions true
exceptionFormat "full"
showCauses true
showStackTraces true
showExceptions = true
exceptionFormat = "full"
showCauses = true
showStackTraces = true

showStandardStreams = false
}
Expand Down

0 comments on commit daf4be5

Please sign in to comment.