Browse Source

Updated Spring Boot version from 2.1.0.M4 to 2.1.0.RELEASE

pull/6093/head
Rafael Dominguez 7 years ago committed by Rob Winch
parent
commit
ac026e23fe
  1. 2
      docs/guides/src/docs/asciidoc/_hello-includes/secure-the-application-boot.asc
  2. 2
      docs/guides/src/docs/asciidoc/helloworld-boot.asc
  3. 2
      gradle.properties
  4. 2
      samples/boot/helloworld/spring-security-samples-boot-helloworld.gradle
  5. 2
      samples/boot/helloworld/src/main/resources/templates/index.html
  6. 2
      samples/boot/oauth2login-webflux/spring-security-samples-boot-oauth2login-webflux.gradle
  7. 2
      samples/boot/oauth2login/spring-security-samples-boot-oauth2login.gradle
  8. 2
      samples/boot/oauth2login/src/main/resources/templates/index.html
  9. 2
      samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle
  10. 2
      samples/boot/oauth2webclient-webflux/src/main/resources/templates/index.html
  11. 2
      samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle
  12. 2
      samples/boot/oauth2webclient/src/main/resources/templates/index.html

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

@ -26,7 +26,7 @@ In order to use Spring Security you must add the necessary dependencies. For the @@ -26,7 +26,7 @@ In order to use Spring Security you must add the necessary dependencies. For the
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity4</artifactId> <1>
<artifactId>thymeleaf-extras-springsecurity5</artifactId> <1>
<version>2.1.2.RELEASE</version>
</dependency>
</dependencies>

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

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

2
gradle.properties

@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
gaeVersion=1.9.66
springBootVersion=2.1.0.M4
springBootVersion=2.1.0.RELEASE
version=5.2.0.BUILD-SNAPSHOT

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

@ -7,7 +7,7 @@ dependencies { @@ -7,7 +7,7 @@ dependencies {
compile project(':spring-security-web')
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
testCompile project(':spring-security-test')
testCompile 'org.springframework.boot:spring-boot-starter-test'

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

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
<head>
<title>Hello Spring Security</title>
<meta charset="utf-8" />

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

@ -8,7 +8,7 @@ dependencies { @@ -8,7 +8,7 @@ dependencies {
compile project(':spring-security-oauth2-jose')
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-webflux'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
testCompile project(':spring-security-test')
testCompile 'net.sourceforge.htmlunit:htmlunit'

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

@ -8,7 +8,7 @@ dependencies { @@ -8,7 +8,7 @@ dependencies {
compile project(':spring-security-oauth2-jose')
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
testCompile project(':spring-security-test')
testCompile 'net.sourceforge.htmlunit:htmlunit'

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

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

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

@ -6,7 +6,7 @@ dependencies { @@ -6,7 +6,7 @@ dependencies {
compile project(':spring-security-oauth2-jose')
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-webflux'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
compile 'io.projectreactor.netty:reactor-netty'
testCompile project(':spring-security-test')

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

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
<head>
<title>OAuth2 WebClient Showcase</title>
<meta charset="utf-8" />

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

@ -9,7 +9,7 @@ dependencies { @@ -9,7 +9,7 @@ dependencies {
compile 'org.springframework:spring-webflux'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity4'
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
compile 'io.projectreactor.netty:reactor-netty'
testCompile project(':spring-security-test')

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

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity5">
<head>
<title>OAuth2 WebClient Showcase</title>
<meta charset="utf-8" />

Loading…
Cancel
Save