From db9e0f4ac7df3fab54c28153bcb582bfd764a117 Mon Sep 17 00:00:00 2001 From: John Niang Date: Thu, 20 Jun 2024 23:10:07 +0800 Subject: [PATCH] Upgrade SpringBoot to 3.3.1 (#6110) #### What type of PR is this? /kind improvement /area core #### What this PR does / why we need it: This PR upgrades Spring Boot to [3.3.1](https://github.com/spring-projects/spring-boot/releases/tag/v3.3.1) and Dependency Management Plugin to [1.1.5](https://github.com/spring-gradle-plugins/dependency-management-plugin/releases/tag/v1.1.5). #### Does this PR introduce a user-facing change? ```release-note None ``` --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 1cfaeafba..0ead6fba7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'org.springframework.boot' version '3.3.0' apply false - id 'io.spring.dependency-management' version '1.1.4' apply false + id 'org.springframework.boot' version '3.3.1' apply false + id 'io.spring.dependency-management' version '1.1.5' apply false id "com.gorylenko.gradle-git-properties" version "2.4.1" apply false id "de.undercouch.download" version "5.6.0" apply false id "io.freefair.lombok" version "8.6" apply false