Skip to content

Commit 1c44cda

Browse files
committed
Applied latest Eclipse-Groovy formatter.
1 parent 19ac28b commit 1c44cda

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
buildscript {
2-
repositories { maven { url 'https://plugins.gradle.org/m2/' } }
2+
repositories {
3+
maven {
4+
url 'https://plugins.gradle.org/m2/'
5+
}
6+
}
37
dependencies {
48
classpath "com.diffplug.gradle:goomph:${VER_GOOMPH}"
59
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:${VER_BINTRAY}"

gradle/build-scans.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ buildScan {
99
if (hasAccepted) {
1010
termsOfServiceAgree = 'yes'
1111
} else if (!hasRefused) {
12-
gradle.buildFinished { println """
12+
gradle.buildFinished {
13+
println """
1314
This build uses Gradle Build Scans to gather statistics, share information about
1415
failures, environmental issues, dependencies resolved during the build and more.
1516
Build scans will be published after each build, if you accept the terms of
@@ -33,6 +34,7 @@ and then:
3334
3435
And we'll not bother you again. Note that build scans are only made public if
3536
you share the URL at the end of the build.
36-
""" }
37+
"""
38+
}
3739
}
3840
}

gradle/java-setup.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
buildscript {
2-
repositories { maven { url 'https://plugins.gradle.org/m2/' } }
2+
repositories {
3+
maven {
4+
url 'https://plugins.gradle.org/m2/'
5+
}
6+
}
37
dependencies { classpath "gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:${VER_SPOTBUGS_PLUGIN}" }
48
}
59

plugin-maven/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ buildscript {
22
repositories { mavenCentral() }
33
dependencies { classpath "com.github.spullara.mustache.java:compiler:${VER_MUSTACHE}" }
44
}
5-
plugins { id 'cz.malohlava' version '1.0.3' // https://github.com/mmalohlava/gradle-visteg
5+
plugins {
6+
id 'cz.malohlava' version '1.0.3' // https://github.com/mmalohlava/gradle-visteg
67
}
78

89
// to generate taskGraph.pdf

spotlessSelf.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
buildscript { repositories { jcenter() } }
1+
buildscript {
2+
repositories {
3+
jcenter()
4+
}
5+
}
26

37
// applied by SelfTest
48
plugins {

0 commit comments

Comments
 (0)