From f1245059ff288e0ff069377678ef0a109a637700 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 8 Nov 2017 09:04:50 -0600 Subject: [PATCH] Consistent Thymeleaf Version in Boot Samples Issue gh-4802 --- .../helloworld/spring-security-samples-boot-helloworld.gradle | 2 ++ .../boot/insecure/spring-security-samples-boot-insecure.gradle | 2 ++ .../oauth2login/spring-security-samples-boot-oauth2login.gradle | 2 ++ 3 files changed, 6 insertions(+) diff --git a/samples/boot/helloworld/spring-security-samples-boot-helloworld.gradle b/samples/boot/helloworld/spring-security-samples-boot-helloworld.gradle index 133289d63a..3c7c1cc043 100644 --- a/samples/boot/helloworld/spring-security-samples-boot-helloworld.gradle +++ b/samples/boot/helloworld/spring-security-samples-boot-helloworld.gradle @@ -1,5 +1,7 @@ apply plugin: 'io.spring.convention.spring-sample-boot' +ext['thymeleaf.version'] = '3.0.9.RELEASE' + dependencies { compile project(':spring-security-config') compile project(':spring-security-web') diff --git a/samples/boot/insecure/spring-security-samples-boot-insecure.gradle b/samples/boot/insecure/spring-security-samples-boot-insecure.gradle index 556ebbb053..0a9f653c14 100644 --- a/samples/boot/insecure/spring-security-samples-boot-insecure.gradle +++ b/samples/boot/insecure/spring-security-samples-boot-insecure.gradle @@ -1,5 +1,7 @@ apply plugin: 'io.spring.convention.spring-sample-boot' +ext['thymeleaf.version'] = '3.0.9.RELEASE' + dependencies { compile 'org.springframework.boot:spring-boot-starter-thymeleaf' compile 'org.springframework.boot:spring-boot-starter-web' diff --git a/samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle b/samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle index 238cea2470..beee079bd4 100644 --- a/samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle +++ b/samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle @@ -1,5 +1,7 @@ apply plugin: 'io.spring.convention.spring-sample-boot' +ext['thymeleaf.version'] = '3.0.9.RELEASE' + dependencies { compile project(':spring-security-config') compile project(':spring-security-oauth2-client')