Skip to content

Commit

Permalink
Applied latest Eclipse-Groovy formatter.
Browse files Browse the repository at this point in the history
  • Loading branch information
fvgh committed Jul 25, 2019
1 parent 19ac28b commit 1c44cda
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
buildscript {
repositories { maven { url 'https://plugins.gradle.org/m2/' } }
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath "com.diffplug.gradle:goomph:${VER_GOOMPH}"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:${VER_BINTRAY}"
Expand Down
6 changes: 4 additions & 2 deletions gradle/build-scans.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ buildScan {
if (hasAccepted) {
termsOfServiceAgree = 'yes'
} else if (!hasRefused) {
gradle.buildFinished { println """
gradle.buildFinished {
println """
This build uses Gradle Build Scans to gather statistics, share information about
failures, environmental issues, dependencies resolved during the build and more.
Build scans will be published after each build, if you accept the terms of
Expand All @@ -33,6 +34,7 @@ and then:
And we'll not bother you again. Note that build scans are only made public if
you share the URL at the end of the build.
""" }
"""
}
}
}
6 changes: 5 additions & 1 deletion gradle/java-setup.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
buildscript {
repositories { maven { url 'https://plugins.gradle.org/m2/' } }
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies { classpath "gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:${VER_SPOTBUGS_PLUGIN}" }
}

Expand Down
3 changes: 2 additions & 1 deletion plugin-maven/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ buildscript {
repositories { mavenCentral() }
dependencies { classpath "com.github.spullara.mustache.java:compiler:${VER_MUSTACHE}" }
}
plugins { id 'cz.malohlava' version '1.0.3' // https://github.com/mmalohlava/gradle-visteg
plugins {
id 'cz.malohlava' version '1.0.3' // https://github.com/mmalohlava/gradle-visteg
}

// to generate taskGraph.pdf
Expand Down
6 changes: 5 additions & 1 deletion spotlessSelf.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
buildscript { repositories { jcenter() } }
buildscript {
repositories {
jcenter()
}
}

// applied by SelfTest
plugins {
Expand Down

0 comments on commit 1c44cda

Please sign in to comment.