Lab: Update the base Spring Boot Version ‐ 2: Update Spring Boot Parent Version - shinyay/spring-boot-2-7-to-3-1-upgrade GitHub Wiki
2: Update Spring Boot Parent Version With any luck we only need to make one change: updating the spring-boot-starter-parent version in our pom.xml.
To reinforce the SCAR method, you'll make a series of Small changes and you'll continually be Compiling, Assessing, and Reacting to the output you see.
Note: At the time of this writing, the current Spring Boot 3.1.x version is 3.1.3.
Make a Small Change. The first Small change consists of updating the Spring Boot Parent Starter version.
The current pom.xml looks like this:
spring-boot-starter-parent org.springframework.boot spring-boot-starter-parent 2.7.14 The updated pom.xml should look like this:
org.springframework.boot spring-boot-starter-parent 3.1.3 Well that was easy! Now let's compile.