Skip to content

Commit 72f7d12

Browse files
committed
Ensure Dependabot is working
* dependabot.yml * Move dependency version properties to build.gradle since dependabot can't update other files
1 parent 6bb90cc commit 72f7d12

File tree

7 files changed

+47
-26
lines changed

7 files changed

+47
-26
lines changed

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gradle
4+
directory: "/"
5+
target-branch: "main"
6+
schedule:
7+
interval: weekly
8+
labels:
9+
- dependencies
10+
11+
- package-ecosystem: gradle
12+
directory: "/"
13+
target-branch: "1.2.x"
14+
schedule:
15+
interval: weekly
16+
labels:
17+
- dependencies
18+
19+
- package-ecosystem: gradle
20+
directory: "/"
21+
target-branch: "1.1.x"
22+
schedule:
23+
interval: weekly
24+
labels:
25+
- dependencies

build.gradle

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,25 @@ import java.util.concurrent.ConcurrentHashMap
1616
* limitations under the License.
1717
*/
1818

19+
buildscript {
20+
ext {
21+
awaitilityVersion = "4.0.2"
22+
blockHoundVersion = "1.0.4.RELEASE"
23+
cfJavaClientVersion = "5.6.0.RELEASE"
24+
checkstyleVersion = "8.37"
25+
commonsTextVersion = "1.8"
26+
immutablesVersion = "2.8.8"
27+
openServiceBrokerVersion = "3.3.0"
28+
pmdVersion = "6.29.0"
29+
springBootVersion = "2.4.3"
30+
springCredhubVersion = "2.1.1.RELEASE"
31+
springFrameworkVersion = "5.3.4"
32+
wiremockVersion = "2.27.2"
33+
}
34+
}
35+
1936
plugins {
20-
id "io.spring.nohttp"
37+
id "io.spring.nohttp" version "0.0.5.RELEASE"
2138
id 'distribution'
2239
id 'jacoco'
2340
}

gradle.properties

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,3 @@ group=org.springframework.cloud
33

44
onlyShowStandardStreamsOnTestFailure = false
55

6-
awaitilityVersion = 4.0.2
7-
blockHoundVersion = 1.0.4.RELEASE
8-
cfJavaClientVersion = 5.6.0.RELEASE
9-
checkstyleVersion = 8.37
10-
commonsTextVersion = 1.8
11-
immutablesVersion = 2.8.8
12-
openServiceBrokerVersion = 3.3.0
13-
pmdVersion = 6.29.0
14-
springBootVersion = 2.4.3
15-
springCredhubVersion = 2.1.1.RELEASE
16-
springFrameworkVersion = 5.3.4
17-
wiremockVersion = 2.27.2

settings.gradle

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
pluginManagement {
2-
plugins {
3-
id "org.springframework.boot" version "${springBootVersion}"
4-
id "io.spring.nohttp" version "0.0.5.RELEASE"
5-
id 'org.asciidoctor.jvm.pdf' version '3.1.0'
6-
id 'org.asciidoctor.jvm.convert' version '3.1.0'
7-
}
8-
}
9-
101
rootProject.name = "spring-cloud-app-broker"
112

123
include "spring-cloud-app-broker-deployer"

spring-cloud-app-broker-acceptance-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
plugins {
18-
id 'org.springframework.boot'
18+
id 'org.springframework.boot' version "2.4.3"
1919
}
2020

2121
description = "Spring Cloud App Broker Acceptance Tests"

spring-cloud-app-broker-docs/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
*/
1616

1717
plugins {
18-
id 'org.asciidoctor.jvm.pdf'
19-
id 'org.asciidoctor.jvm.convert'
18+
id 'org.asciidoctor.jvm.pdf' version '3.1.0'
19+
id 'org.asciidoctor.jvm.convert' version '3.1.0'
2020
}
2121

2222
description = "Spring Cloud App Broker Documentation"

spring-cloud-app-broker-integration-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
plugins {
18-
id 'org.springframework.boot'
18+
id 'org.springframework.boot' version "2.4.3"
1919
}
2020

2121
description = "Spring Cloud App Broker Integration Tests"

0 commit comments

Comments
 (0)