Skip to content

Commit bbae53b

Browse files
author
Jay Bryant
committed
Update to Spring Boot 3.2.0
And remove Jenkinsfile, since we have a GitHub action And fix a typo in the readme.
1 parent b2a7aa5 commit bbae53b

File tree

6 files changed

+7
-51
lines changed

6 files changed

+7
-51
lines changed

Jenkinsfile

-44
This file was deleted.

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
This guide walks you through the process of accessing relational data with Spring.
77

8-
== What You Will build
8+
== What You Will Build
99

1010
You will build an application that uses Spring's `JdbcTemplate` to access data stored in a
1111
relational database.

complete/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.1.0'
3-
id 'io.spring.dependency-management' version '1.1.0'
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

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

initial/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id 'org.springframework.boot' version '3.1.0'
3-
id 'io.spring.dependency-management' version '1.1.0'
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

+1-1
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.0</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)