From bf185589dc01d0a613372227400d61f99cbd729a Mon Sep 17 00:00:00 2001 From: Glenn Renfro Date: Thu, 14 Apr 2016 19:57:58 -0400 Subject: [PATCH] Updated the springioCheck to use the 0.0.5 spring-io plugin And the latest snapshot of the platform. --- build.gradle | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 1a912f076..783542f95 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ buildscript { dependencies { classpath 'org.springframework.build.gradle:docbook-reference-plugin:0.2.8' classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.5' - classpath 'org.springframework.build.gradle:spring-io-plugin:0.0.3.RELEASE' + classpath 'io.spring.gradle:spring-io-plugin:0.0.5.RELEASE' } } @@ -216,7 +216,13 @@ configure(mainProjects) { } dependencies { - springIoVersions "io.spring.platform:platform-versions:${platformVersion}@properties" + dependencyManagement { + springIoTestRuntime { + imports { + mavenBom "io.spring.platform:platform-bom:${platformVersion}" + } + } + } } } }