File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 5
5
buildscript { // for "com.github.ben-manes.versions" plugin
6
6
repositories {
7
7
maven {
8
- url " https://plugins.gradle.org/m2/"
8
+ url = " https://plugins.gradle.org/m2/"
9
9
}
10
10
}
11
11
dependencies {
@@ -37,7 +37,7 @@ def distroDir = "$projectDir/distro"
37
37
repositories {
38
38
mavenCentral()
39
39
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/" }
41
41
maven {
42
42
url = file(' lib/local-mvn-repo' )
43
43
}
@@ -119,12 +119,12 @@ test {
119
119
}
120
120
121
121
testLogging {
122
- events " failed" // "standardOut", "standardError", "passed", "skipped"
122
+ // events = "failed" // "standardOut", "standardError", "passed", "skipped"
123
123
124
- showExceptions true
125
- exceptionFormat " full"
126
- showCauses true
127
- showStackTraces true
124
+ showExceptions = true
125
+ exceptionFormat = " full"
126
+ showCauses = true
127
+ showStackTraces = true
128
128
129
129
showStandardStreams = false
130
130
}
You can’t perform that action at this time.
0 commit comments