Browse Source

Update to thymeleaf-spring5 3.0.14

Closes gh-10620
5.2.x
Eleftheria Stein 4 years ago
parent
commit
0eb7ad597c
  1. 2
      gradle/dependency-management.gradle
  2. 2
      samples/boot/helloworld/spring-security-samples-boot-helloworld.gradle
  3. 2
      samples/boot/insecure/spring-security-samples-boot-insecure.gradle
  4. 2
      samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle
  5. 2
      samples/boot/webflux-form/spring-security-samples-boot-webflux-form.gradle

2
gradle/dependency-management.gradle

@ -211,8 +211,8 @@ dependencyManagement { @@ -211,8 +211,8 @@ dependencyManagement {
dependency 'org.sonatype.sisu.inject:cglib:2.2.1-v20090111'
dependency 'org.springframework.ldap:spring-ldap-core:2.3.4.RELEASE'
dependency 'org.synchronoss.cloud:nio-multipart-parser:1.1.0'
dependency 'org.thymeleaf:thymeleaf-spring5:3.0.12.RELEASE'
dependency 'org.unbescape:unbescape:1.1.5.RELEASE'
dependency 'org.thymeleaf:thymeleaf-spring5:3.0.14.RELEASE'
dependency 'org.w3c.css:sac:1.3'
dependency 'xalan:serializer:2.7.2'
dependency 'xalan:xalan:2.7.2'

2
samples/boot/helloworld/spring-security-samples-boot-helloworld.gradle

@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-boot'
ext['thymeleaf.version']='3.0.14.RELEASE'
dependencies {
compile project(':spring-security-config')
compile project(':spring-security-web')

2
samples/boot/insecure/spring-security-samples-boot-insecure.gradle

@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-boot'
ext['thymeleaf.version']='3.0.14.RELEASE'
dependencies {
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-web'

2
samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle

@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
apply plugin: 'io.spring.convention.spring-sample-boot'
ext['thymeleaf.version']='3.0.14.RELEASE'
dependencies {
compile project(':spring-security-config')
compile project(':spring-security-oauth2-client')

2
samples/boot/webflux-form/spring-security-samples-boot-webflux-form.gradle

@ -16,6 +16,8 @@ @@ -16,6 +16,8 @@
apply plugin: 'io.spring.convention.spring-sample-boot'
ext['thymeleaf.version']='3.0.14.RELEASE'
dependencies {
compile project(':spring-security-core')
compile project(':spring-security-config')

Loading…
Cancel
Save