Skip to content

Commit

Permalink
Ensure Dependabot is working
Browse files Browse the repository at this point in the history
* dependabot.yml
* Move dependency version properties to build.gradle since dependabot
can't update other files
  • Loading branch information
spikymonkey committed Oct 1, 2021
1 parent 6bb90cc commit 72f7d12
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 26 deletions.
25 changes: 25 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: 2
updates:
- package-ecosystem: gradle
directory: "/"
target-branch: "main"
schedule:
interval: weekly
labels:
- dependencies

- package-ecosystem: gradle
directory: "/"
target-branch: "1.2.x"
schedule:
interval: weekly
labels:
- dependencies

- package-ecosystem: gradle
directory: "/"
target-branch: "1.1.x"
schedule:
interval: weekly
labels:
- dependencies
19 changes: 18 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,25 @@ import java.util.concurrent.ConcurrentHashMap
* limitations under the License.
*/

buildscript {
ext {
awaitilityVersion = "4.0.2"
blockHoundVersion = "1.0.4.RELEASE"
cfJavaClientVersion = "5.6.0.RELEASE"
checkstyleVersion = "8.37"
commonsTextVersion = "1.8"
immutablesVersion = "2.8.8"
openServiceBrokerVersion = "3.3.0"
pmdVersion = "6.29.0"
springBootVersion = "2.4.3"
springCredhubVersion = "2.1.1.RELEASE"
springFrameworkVersion = "5.3.4"
wiremockVersion = "2.27.2"
}
}

plugins {
id "io.spring.nohttp"
id "io.spring.nohttp" version "0.0.5.RELEASE"
id 'distribution'
id 'jacoco'
}
Expand Down
12 changes: 0 additions & 12 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,3 @@ group=org.springframework.cloud

onlyShowStandardStreamsOnTestFailure = false

awaitilityVersion = 4.0.2
blockHoundVersion = 1.0.4.RELEASE
cfJavaClientVersion = 5.6.0.RELEASE
checkstyleVersion = 8.37
commonsTextVersion = 1.8
immutablesVersion = 2.8.8
openServiceBrokerVersion = 3.3.0
pmdVersion = 6.29.0
springBootVersion = 2.4.3
springCredhubVersion = 2.1.1.RELEASE
springFrameworkVersion = 5.3.4
wiremockVersion = 2.27.2
9 changes: 0 additions & 9 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
pluginManagement {
plugins {
id "org.springframework.boot" version "${springBootVersion}"
id "io.spring.nohttp" version "0.0.5.RELEASE"
id 'org.asciidoctor.jvm.pdf' version '3.1.0'
id 'org.asciidoctor.jvm.convert' version '3.1.0'
}
}

rootProject.name = "spring-cloud-app-broker"

include "spring-cloud-app-broker-deployer"
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-app-broker-acceptance-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

plugins {
id 'org.springframework.boot'
id 'org.springframework.boot' version "2.4.3"
}

description = "Spring Cloud App Broker Acceptance Tests"
Expand Down
4 changes: 2 additions & 2 deletions spring-cloud-app-broker-docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
*/

plugins {
id 'org.asciidoctor.jvm.pdf'
id 'org.asciidoctor.jvm.convert'
id 'org.asciidoctor.jvm.pdf' version '3.1.0'
id 'org.asciidoctor.jvm.convert' version '3.1.0'
}

description = "Spring Cloud App Broker Documentation"
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-app-broker-integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

plugins {
id 'org.springframework.boot'
id 'org.springframework.boot' version "2.4.3"
}

description = "Spring Cloud App Broker Integration Tests"
Expand Down

0 comments on commit 72f7d12

Please sign in to comment.