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')