From 8801896acadad0d84fe1e0f54893e705cefa002f Mon Sep 17 00:00:00 2001 From: le0nus <38004304+le0nus@users.noreply.github.com> Date: Sat, 16 May 2026 03:02:02 +0300 Subject: [PATCH] Bump Spring Boot 3.4.4 -> 3.5.14 The 3.4.x line is no longer maintained on OSS support; 3.5.14 is the latest patch on the supported 3.5.x branch. Verified locally on Temurin 24.0.2: - ./gradlew clean build: SUCCESS - ./gradlew test: AppTest.testRootPage PASSED - ./gradlew checkstyleMain: no issues - bootRun: app responds 200 on GET / with the same body --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 25db492..4412f25 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent plugins { jacoco checkstyle - id("org.springframework.boot") version "3.4.4" + id("org.springframework.boot") version "3.5.14" id("io.spring.dependency-management") version "1.1.7" id("application") }