Skip to content

Commit daf4be5

Browse files
committed
fix gradle warnings
1 parent 0291c22 commit daf4be5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
buildscript { // for "com.github.ben-manes.versions" plugin
66
repositories {
77
maven {
8-
url "https://plugins.gradle.org/m2/"
8+
url = "https://plugins.gradle.org/m2/"
99
}
1010
}
1111
dependencies {
@@ -37,7 +37,7 @@ def distroDir = "$projectDir/distro"
3737
repositories {
3838
mavenCentral()
3939
mavenLocal()
40-
maven {url "https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/" }
40+
maven {url = "https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/" }
4141
maven {
4242
url = file('lib/local-mvn-repo')
4343
}
@@ -119,12 +119,12 @@ test {
119119
}
120120

121121
testLogging {
122-
events "failed" // "standardOut", "standardError", "passed", "skipped"
122+
//events = "failed" // "standardOut", "standardError", "passed", "skipped"
123123

124-
showExceptions true
125-
exceptionFormat "full"
126-
showCauses true
127-
showStackTraces true
124+
showExceptions = true
125+
exceptionFormat = "full"
126+
showCauses = true
127+
showStackTraces = true
128128

129129
showStandardStreams = false
130130
}

0 commit comments

Comments
 (0)