From 7c03b742c582f3f47cf81941abfe9ee1d081b746 Mon Sep 17 00:00:00 2001 From: Shawn Azman Date: Tue, 2 Dec 2025 18:57:41 +0000 Subject: [PATCH 1/2] Upgrade Spring Boot to 3.4.12 - Update spring-boot-starter-parent from 3.3.3 to 3.4.12 - Update maven-compiler-plugin from 3.8.0 to 3.13.0 - Fix maven-compiler-plugin source/target from 1.8 to 17 to match java.version property Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- pom.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pom.xml b/pom.xml index fc5bfeac..bd36f583 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.3.3 + 3.4.12 com.example @@ -76,14 +76,14 @@ spring-boot-maven-plugin - org.apache.maven.plugins - maven-compiler-plugin - 3.8.0 - - 1.8 - 1.8 - - + org.apache.maven.plugins + maven-compiler-plugin + 3.13.0 + + 17 + 17 + + From f9e4c6fafde14e92e641833479b90caf23a17236 Mon Sep 17 00:00:00 2001 From: Shawn Azman Date: Tue, 2 Dec 2025 18:58:51 +0000 Subject: [PATCH 2/2] Upgrade Spring Boot to 3.5.8 - Update spring-boot-starter-parent from 3.4.12 to 3.5.8 - Update MySQL connector from mysql:mysql-connector-java:8.0.33 to com.mysql:mysql-connector-j (managed by Spring Boot BOM) - Make mvnw executable Note: AntPathRequestMatcher deprecation warning exists in SecurityConfig.java but is not addressed per upgrade guidelines to avoid unnecessary refactors Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- mvnw | 0 pom.xml | 7 +++---- 2 files changed, 3 insertions(+), 4 deletions(-) mode change 100644 => 100755 mvnw diff --git a/mvnw b/mvnw old mode 100644 new mode 100755 diff --git a/pom.xml b/pom.xml index bd36f583..5b08b97f 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.boot spring-boot-starter-parent - 3.4.12 + 3.5.8 com.example @@ -52,9 +52,8 @@ - mysql - mysql-connector-java - 8.0.33 + com.mysql + mysql-connector-j runtime