diff --git a/build.gradle b/build.gradle index 6e4b3a7ae..d04295178 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { } dependencies { classpath 'org.springframework.build.gradle:bundlor-plugin:0.1.2' - classpath 'org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE' + classpath 'io.spring.gradle:spring-io-plugin:0.0.4.RELEASE' classpath 'me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1' classpath 'io.spring.gradle:docbook-reference-plugin:0.3.0' classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.0' @@ -43,8 +43,12 @@ if (project.hasProperty('platformVersion')) { maven { url "https://repo.spring.io/libs-snapshot" } } - dependencies { - springIoVersions "io.spring.platform:platform-versions:${platformVersion}@properties" + dependencyManagement { + springIoTestRuntime { + imports { + mavenBom "io.spring.platform:platform-bom:${platformVersion}" + } + } } }