Skip to content

Commit

Permalink
Update to Spring Boot 3.2.0
Browse files Browse the repository at this point in the history
And remove unused AsciiDoc attributes.
  • Loading branch information
Jay Bryant committed Dec 5, 2023
1 parent 3bfdc11 commit 97cd8d2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 54 deletions.
44 changes: 0 additions & 44 deletions Jenkinsfile

This file was deleted.

5 changes: 1 addition & 4 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
:spring_version: current
:spring_boot_version: 3.1.0
:SpringData: https://projects.spring.io/spring-data/
:Cacheable: https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/cache/annotation/Cacheable.html
:CachePut: https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/cache/annotation/CachePut.html
:CacheEvict: https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/cache/annotation/CacheEvict.html
:CachingConfigurer: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/cache/annotation/CachingConfigurer.html
:EnableCaching: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/cache/annotation/EnableCaching.html
:CacheManager: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/cache/CacheManager.html
:documentation: https://docs.spring.io/spring/docs/{spring_version}/spring-framework-reference/html/cache.html
Expand All @@ -17,7 +14,7 @@

This guide walks you through the process of enabling caching on a Spring managed bean.

== What You Will build
== What You Will Build

You will build an application that enables caching on a simple book repository.

Expand Down
4 changes: 2 additions & 2 deletions complete/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.boot' version '3.1.0'
id 'io.spring.dependency-management' version '1.1.0'
id 'org.springframework.boot' version '3.2.0'
id 'io.spring.dependency-management' version '1.1.4'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion complete/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand Down
4 changes: 2 additions & 2 deletions initial/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'org.springframework.boot' version '3.1.0'
id 'io.spring.dependency-management' version '1.1.0'
id 'org.springframework.boot' version '3.2.0'
id 'io.spring.dependency-management' version '1.1.4'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion initial/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand Down

0 comments on commit 97cd8d2

Please sign in to comment.