Skip to content

Commit a950d28

Browse files
author
Jay Bryant
committed
Update to Spring Boot 3.2.0
Also removed some unused AsciiDoc attributes and fixed a typo in the readme.
1 parent 57043ba commit a950d28

File tree

6 files changed

+7
-53
lines changed

6 files changed

+7
-53
lines changed

Jenkinsfile

Lines changed: 0 additions & 44 deletions
This file was deleted.

README.adoc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
:spring_version: current
22
:spring_boot_version: current
33
:Controller: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/stereotype/Controller.html
4-
:DispatcherServlet: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/web/servlet/DispatcherServlet.html
5-
:SpringApplication: https://docs.spring.io/spring-boot/docs/{spring_boot_version}/api/org/springframework/boot/SpringApplication.html
64
:View: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/web/servlet/View.html
75
:Model: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/ui/Model.html
86
:images: https://raw.githubusercontent.com/spring-guides/gs-handling-form-submission/main/images
@@ -13,7 +11,7 @@
1311

1412
This guide walks you through the process of using Spring to create and submit a web form.
1513

16-
== What You Will build
14+
== What You Will Build
1715

1816
In this guide, you will build a web form, which will be accessible at the following URL:
1917
`http://localhost:8080/greeting`

complete/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.1.4'
3-
id 'io.spring.dependency-management' version '1.1.3'
2+
id 'org.springframework.boot' version '3.2.0'
3+
id 'io.spring.dependency-management' version '1.1.4'
44
id 'java'
55
}
66

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.1.4</version>
8+
<version>3.2.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

initial/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.1.4'
3-
id 'io.spring.dependency-management' version '1.1.3'
2+
id 'org.springframework.boot' version '3.2.0'
3+
id 'io.spring.dependency-management' version '1.1.4'
44
id 'java'
55
}
66

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.1.4</version>
8+
<version>3.2.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.example</groupId>

0 commit comments

Comments
 (0)