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