From 995d88952dea9970b2fc710faf0c78064e61a926 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Tue, 30 Aug 2016 11:25:11 -0500 Subject: [PATCH] Update to Spring Boot 1.4 Fixes gh-4050 --- build.gradle | 2 +- samples/boot/insecure/build.gradle | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index de1cc2137f..1f6355bfaa 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { classpath('me.champeau.gradle:gradle-javadoc-hotfix-plugin:0.1') classpath('org.asciidoctor:asciidoctor-gradle-plugin:1.5.1') classpath("io.spring.gradle:docbook-reference-plugin:0.3.1") - classpath("org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE") + classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE") } } diff --git a/samples/boot/insecure/build.gradle b/samples/boot/insecure/build.gradle index ff5d9e339a..2727c73c67 100644 --- a/samples/boot/insecure/build.gradle +++ b/samples/boot/insecure/build.gradle @@ -5,8 +5,8 @@ springBoot { } dependencies { - compile "org.springframework.boot:spring-boot-starter-web:1.3.3.RELEASE", - "org.springframework.boot:spring-boot-starter-thymeleaf:1.3.3.RELEASE" + compile "org.springframework.boot:spring-boot-starter-web", + "org.springframework.boot:spring-boot-starter-thymeleaf" - testCompile "org.springframework.boot:spring-boot-starter-test:1.3.3.RELEASE" + testCompile "org.springframework.boot:spring-boot-starter-test" }