From c54f76db6a560569fd095fdc6001e7906594d0f9 Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Mon, 18 Nov 2013 15:18:42 -0600 Subject: [PATCH] Upgrade to Spring Boot 0.5.0.M6 --- README.md | 4 ++-- complete/build.gradle | 8 ++++---- complete/pom.xml | 2 +- initial/build.gradle | 4 ++-- initial/pom.xml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf2569e..71e55a9 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ buildscript { mavenLocal() } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M5") + classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6") } } @@ -84,7 +84,7 @@ repositories { } dependencies { - compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M5") + compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M6") testCompile("junit:junit:4.11") } diff --git a/complete/build.gradle b/complete/build.gradle index 356f3cb..c7df849 100644 --- a/complete/build.gradle +++ b/complete/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenLocal() } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M5") + classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6") } } @@ -24,11 +24,11 @@ repositories { } dependencies { - compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M5") { + compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M6") { exclude module: "spring-boot-starter-tomcat" } - compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M5") - compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M5") + compile("org.springframework.boot:spring-boot-starter-jetty:0.5.0.M6") + compile("org.springframework.boot:spring-boot-starter-actuator:0.5.0.M6") testCompile("junit:junit:4.11") } diff --git a/complete/pom.xml b/complete/pom.xml index 44e7955..98c7a87 100644 --- a/complete/pom.xml +++ b/complete/pom.xml @@ -10,7 +10,7 @@ org.springframework.boot spring-boot-starter-parent - 0.5.0.M5 + 0.5.0.M6 diff --git a/initial/build.gradle b/initial/build.gradle index 3d01a54..5668c51 100644 --- a/initial/build.gradle +++ b/initial/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenLocal() } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M5") + classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6") } } @@ -24,7 +24,7 @@ repositories { } dependencies { - compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M5") + compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M6") testCompile("junit:junit:4.11") } diff --git a/initial/pom.xml b/initial/pom.xml index 305c3af..43bc497 100644 --- a/initial/pom.xml +++ b/initial/pom.xml @@ -10,7 +10,7 @@ org.springframework.boot spring-boot-starter-parent - 0.5.0.M5 + 0.5.0.M6 -- GitLab