From a2ece2c237fab7c4ad58db01a8d8c54363fd2cf6 Mon Sep 17 00:00:00 2001 From: Jay Bryant Date: Wed, 31 May 2023 14:41:13 -0500 Subject: [PATCH] Upgrade to Spring Boot 3.1.0 --- README.adoc | 2 +- complete/build.gradle | 2 +- complete/pom.xml | 2 +- initial/build.gradle | 2 +- initial/pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 0b96d3c..c6c8894 100644 --- a/README.adoc +++ b/README.adoc @@ -27,7 +27,7 @@ include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/ [[scratch]] == Starting with Spring Initializr -You can use this https://start.spring.io/#!type=maven-project&language=java&platformVersion=2.5.5&packaging=jar&jvmVersion=11&groupId=com.example&artifactId=securing-web&name=securing-web&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.securing-web&dependencies=web,thymeleaf[pre-initialized project] and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial. +You can use this https://start.spring.io/#!type=maven-project&language=java&packaging=jar&jvmVersion=11&groupId=com.example&artifactId=securing-web&name=securing-web&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.securing-web&dependencies=web,thymeleaf[pre-initialized project] and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial. To manually initialize the project: diff --git a/complete/build.gradle b/complete/build.gradle index bba4f1f..d823f50 100644 --- a/complete/build.gradle +++ b/complete/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.0.0' + id 'org.springframework.boot' version '3.1.0' id 'io.spring.dependency-management' version '1.1.0' } diff --git a/complete/pom.xml b/complete/pom.xml index 8b423ab..74a6344 100644 --- a/complete/pom.xml +++ b/complete/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.0.0 + 3.1.0 com.example diff --git a/initial/build.gradle b/initial/build.gradle index c75214b..37a6ef1 100644 --- a/initial/build.gradle +++ b/initial/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.0.0' + id 'org.springframework.boot' version '3.1.0' id 'io.spring.dependency-management' version '1.1.0' } diff --git a/initial/pom.xml b/initial/pom.xml index 46ed5a7..a34c2a0 100644 --- a/initial/pom.xml +++ b/initial/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.0.0 + 3.1.0 com.example