From d72eb6307dca31acadc211fa8c6d8da9afa248da Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Thu, 13 Feb 2014 12:38:43 -0600 Subject: [PATCH] Upgrade to Spring Boot 1.0.0.RC2 --- complete/build.gradle | 10 +++++----- complete/pom.xml | 2 +- initial/build.gradle | 6 +++--- initial/pom.xml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/complete/build.gradle b/complete/build.gradle index 6b4133d..3483fa8 100644 --- a/complete/build.gradle +++ b/complete/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenLocal() } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC1") + classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC2") } } @@ -24,12 +24,12 @@ repositories { } dependencies { - compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC1") { + compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC2") { exclude module: "spring-boot-starter-tomcat" } - compile("org.springframework.boot:spring-boot-starter-jetty:1.0.0.RC1") - compile("org.springframework.boot:spring-boot-starter-actuator:1.0.0.RC1") - testCompile("junit:junit:4.11") + compile("org.springframework.boot:spring-boot-starter-jetty:1.0.0.RC2") + compile("org.springframework.boot:spring-boot-starter-actuator:1.0.0.RC2") + testCompile("junit:junit") } task wrapper(type: Wrapper) { diff --git a/complete/pom.xml b/complete/pom.xml index bc82fc5..2645748 100644 --- a/complete/pom.xml +++ b/complete/pom.xml @@ -10,7 +10,7 @@ org.springframework.boot spring-boot-starter-parent - 1.0.0.RC1 + 1.0.0.RC2 diff --git a/initial/build.gradle b/initial/build.gradle index 6c62be1..a7210bb 100644 --- a/initial/build.gradle +++ b/initial/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenLocal() } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC1") + classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC2") } } @@ -24,8 +24,8 @@ repositories { } dependencies { - compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC1") - testCompile("junit:junit:4.11") + compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC2") + testCompile("junit:junit") } task wrapper(type: Wrapper) { diff --git a/initial/pom.xml b/initial/pom.xml index d3fe33e..4c17930 100644 --- a/initial/pom.xml +++ b/initial/pom.xml @@ -10,7 +10,7 @@ org.springframework.boot spring-boot-starter-parent - 1.0.0.RC1 + 1.0.0.RC2 -- GitLab