From f74c592c49b3c71727209cfc27fc2a8f61edb5eb Mon Sep 17 00:00:00 2001 From: Jay Bryant Date: Thu, 30 Nov 2023 12:50:55 -0600 Subject: [PATCH] Update to Spring Boot 3.2.0 Also fixed a typo in the readme. --- README.adoc | 2 +- complete/build.gradle | 4 ++-- complete/pom.xml | 2 +- initial/build.gradle | 4 ++-- initial/pom.xml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.adoc b/README.adoc index 88ec150..19f2280 100644 --- a/README.adoc +++ b/README.adoc @@ -6,7 +6,7 @@ This guide walks you through the process of building an application that uses Spring Data JPA to store and retrieve data in a relational database. -== What You Will build +== What You Will Build You will build an application that stores `Customer` POJOs (Plain Old Java Objects) in a memory-based database. diff --git a/complete/build.gradle b/complete/build.gradle index 7e40c83..5a56cf9 100644 --- a/complete/build.gradle +++ b/complete/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'org.springframework.boot' version '3.1.5' - id 'io.spring.dependency-management' version '1.1.3' + id 'org.springframework.boot' version '3.2.0' + id 'io.spring.dependency-management' version '1.1.4' id 'java' } diff --git a/complete/pom.xml b/complete/pom.xml index f1b0540..6acd8d1 100644 --- a/complete/pom.xml +++ b/complete/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.1.5 + 3.2.0 com.example diff --git a/initial/build.gradle b/initial/build.gradle index 7e40c83..5a56cf9 100644 --- a/initial/build.gradle +++ b/initial/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'org.springframework.boot' version '3.1.5' - id 'io.spring.dependency-management' version '1.1.3' + id 'org.springframework.boot' version '3.2.0' + id 'io.spring.dependency-management' version '1.1.4' id 'java' } diff --git a/initial/pom.xml b/initial/pom.xml index 9ec20fe..2311fa5 100644 --- a/initial/pom.xml +++ b/initial/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.1.5 + 3.2.0 com.example