Skip to content

Commit ac026e2

Browse files
raphaelDLrwinch
authored andcommitted
Updated Spring Boot version from 2.1.0.M4 to 2.1.0.RELEASE
1 parent b5455b0 commit ac026e2

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

docs/guides/src/docs/asciidoc/_hello-includes/secure-the-application-boot.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In order to use Spring Security you must add the necessary dependencies. For the
2626
</dependency>
2727
<dependency>
2828
<groupId>org.thymeleaf.extras</groupId>
29-
<artifactId>thymeleaf-extras-springsecurity4</artifactId> <1>
29+
<artifactId>thymeleaf-extras-springsecurity5</artifactId> <1>
3030
<version>2.1.2.RELEASE</version>
3131
</dependency>
3232
</dependencies>

docs/guides/src/docs/asciidoc/helloworld-boot.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Now that we have authenticated, let's update the application to display the user
3232
[source,html]
3333
----
3434
<!DOCTYPE html>
35-
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
35+
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
3636
<head>
3737
<title>Hello Spring Security</title>
3838
<meta charset="utf-8" />

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
gaeVersion=1.9.66
2-
springBootVersion=2.1.0.M4
2+
springBootVersion=2.1.0.RELEASE
33
version=5.2.0.BUILD-SNAPSHOT

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compile project(':spring-security-web')
88
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
99
compile 'org.springframework.boot:spring-boot-starter-web'
10-
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
10+
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
1111

1212
testCompile project(':spring-security-test')
1313
testCompile 'org.springframework.boot:spring-boot-starter-test'

samples/boot/helloworld/src/main/resources/templates/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
2+
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
33
<head>
44
<title>Hello Spring Security</title>
55
<meta charset="utf-8" />

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
compile project(':spring-security-oauth2-jose')
99
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
1010
compile 'org.springframework.boot:spring-boot-starter-webflux'
11-
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
11+
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
1212

1313
testCompile project(':spring-security-test')
1414
testCompile 'net.sourceforge.htmlunit:htmlunit'

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
compile project(':spring-security-oauth2-jose')
99
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
1010
compile 'org.springframework.boot:spring-boot-starter-web'
11-
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
11+
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
1212

1313
testCompile project(':spring-security-test')
1414
testCompile 'net.sourceforge.htmlunit:htmlunit'

samples/boot/oauth2login/src/main/resources/templates/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
2+
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
33
<head>
44
<title>Spring Security - OAuth 2.0 Login</title>
55
<meta charset="utf-8" />

samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
compile project(':spring-security-oauth2-jose')
77
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
88
compile 'org.springframework.boot:spring-boot-starter-webflux'
9-
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
9+
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
1010
compile 'io.projectreactor.netty:reactor-netty'
1111

1212
testCompile project(':spring-security-test')

samples/boot/oauth2webclient-webflux/src/main/resources/templates/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
2+
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
33
<head>
44
<title>OAuth2 WebClient Showcase</title>
55
<meta charset="utf-8" />

samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compile 'org.springframework:spring-webflux'
1010
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
1111
compile 'org.springframework.boot:spring-boot-starter-web'
12-
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
12+
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
1313
compile 'io.projectreactor.netty:reactor-netty'
1414

1515
testCompile project(':spring-security-test')

samples/boot/oauth2webclient/src/main/resources/templates/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
2+
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
33
<head>
44
<title>OAuth2 WebClient Showcase</title>
55
<meta charset="utf-8" />

0 commit comments

Comments
 (0)