From 536218d7021e0afe043639e4c621e2f0a015d868 Mon Sep 17 00:00:00 2001 From: John Niang Date: Mon, 30 Jan 2023 11:44:12 +0800 Subject: [PATCH] Upgrade Spring Boot to 3.0.2 (#3176) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /kind improvement /area core /milestone 2.2.x #### What this PR does / why we need it: Upgrade Spring Boot to 3.0.2. See https://github.com/spring-projects/spring-boot/releases/tag/v3.0.2 for more. #### Does this PR introduce a user-facing change? ```release-note 升级依赖 Spring Boot 至 3.0.2 ``` --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 2b8ad9351..a11ae72bb 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version '3.0.1' + id 'org.springframework.boot' version '3.0.2' id 'io.spring.dependency-management' version '1.1.0' id "checkstyle" id 'java'