Skip to content

Commit 67a6f7b

Browse files
author
Jay Bryant
committed
Upgrade to Spring Boot 3.1.0
1 parent 0938398 commit 67a6f7b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:spring_version: current
2-
:spring_boot_version: 3.0.2
2+
:spring_boot_version: 3.1.0
33
:jackson: https://wiki.fasterxml.com/JacksonHome
44
:SpringApplication: https://docs.spring.io/spring-boot/docs/{spring_boot_version}/api/org/springframework/boot/SpringApplication.html
55
:EnableAsync: https://docs.spring.io/spring/docs/current/spring-framework-reference/html/scheduling.html#scheduling-annotation-support
@@ -34,7 +34,7 @@ include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/
3434
[[scratch]]
3535
== Starting with Spring Initializr
3636

37-
You can use this https://start.spring.io/#!type=gradle-project&language=java&platformVersion=3.0.2&packaging=jar&jvmVersion=17&groupId=com.example&artifactId=async-method&name=async-method&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.async-method&dependencies=web[pre-initialized project] and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial.
37+
You can use this https://start.spring.io/#!type=gradle-project&language=java&platformVersion=3.1.0&packaging=jar&jvmVersion=17&groupId=com.example&artifactId=async-method&name=async-method&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.async-method&dependencies=web[pre-initialized project] and click Generate to download a ZIP file. This project is configured to fit the examples in this tutorial.
3838

3939
To manually initialize the project:
4040

complete/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.0.0'
2+
id 'org.springframework.boot' version '3.1.0'
33
id 'io.spring.dependency-management' version '1.1.0'
44
id 'java'
55
}

complete/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.0</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

initial/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.0.0'
2+
id 'org.springframework.boot' version '3.1.0'
33
id 'io.spring.dependency-management' version '1.1.0'
44
id 'java'
55
}

initial/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.0</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

0 commit comments

Comments
 (0)