Skip to content

Commit f23ec82

Browse files
wilkinsonagregturn
authored andcommitted
SWS-906 - Use the latest version of the Spring IO Plugin
Spring IO Platform 2.0 will remove the managed versions .properties file as support for it has been removed in Spring Boot 1.3. This commit moves the build onto a new version of the Spring IO Plugin that uses the Maven bom rather than the properties file.
1 parent 4b179e8 commit f23ec82

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
dependencies {
66
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
77
classpath 'org.springframework.build.gradle:docbook-reference-plugin:0.2.7'
8-
classpath 'org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE'
8+
classpath 'io.spring.gradle:spring-io-plugin:0.0.4.RELEASE'
99
}
1010
}
1111

@@ -87,8 +87,12 @@ configure(subprojects) { subproject ->
8787
maven { url "https://repo.spring.io/libs-snapshot" }
8888
}
8989

90-
dependencies {
91-
springIoVersions "io.spring.platform:platform-versions:${platformVersion}@properties"
90+
dependencyManagement {
91+
springIoTestRuntime {
92+
imports {
93+
mavenBom "io.spring.platform:platform-bom:${platformVersion}"
94+
}
95+
}
9296
}
9397
}
9498

0 commit comments

Comments
 (0)