Explorar o código

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

Rafael Dominguez %!s(int64=6) %!d(string=hai) anos
pai
achega
ac026e23fe

+ 1 - 1
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
   </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>

+ 1 - 1
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
 [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" />

+ 1 - 1
gradle.properties

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

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

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

+ 1 - 1
samples/boot/helloworld/src/main/resources/templates/index.html

@@ -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" />

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

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

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

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

+ 1 - 1
samples/boot/oauth2login/src/main/resources/templates/index.html

@@ -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" />

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

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

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

@@ -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" />

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

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

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

@@ -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" />