From 097b38d5c5d9787f9c1c8c308d9887b03ac6b735 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 27 Mar 2018 15:16:08 +0100 Subject: [PATCH] Update the Spring Boot-based samples to use 2.0.0.RELEASE Closes gh-494 --- samples/junit5/build.gradle | 4 ++-- samples/rest-assured/build.gradle | 4 ++-- samples/rest-notes-slate/build.gradle | 3 +-- samples/rest-notes-spring-data-rest/pom.xml | 13 +------------ samples/rest-notes-spring-hateoas/build.gradle | 4 ++-- samples/testng/build.gradle | 4 ++-- 6 files changed, 10 insertions(+), 22 deletions(-) diff --git a/samples/junit5/build.gradle b/samples/junit5/build.gradle index 66ffd19e..0f462af8 100644 --- a/samples/junit5/build.gradle +++ b/samples/junit5/build.gradle @@ -1,9 +1,9 @@ buildscript { repositories { - maven { url 'https://repo.spring.io/milestone' } + mavenCentral() } dependencies { - classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M6' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE' classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.1' } } diff --git a/samples/rest-assured/build.gradle b/samples/rest-assured/build.gradle index 309856f4..e4d1fee1 100644 --- a/samples/rest-assured/build.gradle +++ b/samples/rest-assured/build.gradle @@ -1,9 +1,9 @@ buildscript { repositories { - maven { url 'https://repo.spring.io/milestone' } + mavenCentral() } dependencies { - classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M1' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE' } } diff --git a/samples/rest-notes-slate/build.gradle b/samples/rest-notes-slate/build.gradle index d3b85b91..fdcff280 100644 --- a/samples/rest-notes-slate/build.gradle +++ b/samples/rest-notes-slate/build.gradle @@ -1,10 +1,9 @@ buildscript { repositories { mavenCentral() - maven { url 'https://repo.spring.io/milestone' } } dependencies { - classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M6' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE' } } diff --git a/samples/rest-notes-spring-data-rest/pom.xml b/samples/rest-notes-spring-data-rest/pom.xml index de38565f..e9d30424 100644 --- a/samples/rest-notes-spring-data-rest/pom.xml +++ b/samples/rest-notes-spring-data-rest/pom.xml @@ -11,7 +11,7 @@ org.springframework.boot spring-boot-starter-parent - 2.0.0.M6 + 2.0.0.RELEASE @@ -128,15 +128,4 @@ - - - spring-snapshots - Spring snapshots - https://repo.spring.io/libs-snapshot - - true - - - - diff --git a/samples/rest-notes-spring-hateoas/build.gradle b/samples/rest-notes-spring-hateoas/build.gradle index e6e04f28..81d553a0 100644 --- a/samples/rest-notes-spring-hateoas/build.gradle +++ b/samples/rest-notes-spring-hateoas/build.gradle @@ -1,9 +1,9 @@ buildscript { repositories { - maven { url 'https://repo.spring.io/milestone' } + mavenCentral() } dependencies { - classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M6' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE' } } diff --git a/samples/testng/build.gradle b/samples/testng/build.gradle index 1d38ca51..b91f8431 100644 --- a/samples/testng/build.gradle +++ b/samples/testng/build.gradle @@ -1,9 +1,9 @@ buildscript { repositories { - maven { url 'https://repo.spring.io/milestone' } + mavenCentral() } dependencies { - classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M6' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE' } }