From 25103b9ff89432571a846e2973f197ffddc63f9b Mon Sep 17 00:00:00 2001 From: John Niang Date: Wed, 28 Jun 2023 16:08:11 +0800 Subject: [PATCH] Upgrade Spring Boot to 3.1.1 (#4136) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #### What type of PR is this? /kind cleanup /area core /milestone 2.7.x #### What this PR does / why we need it: Upgrade Spring Boot to 3.1.1. See https://github.com/spring-projects/spring-boot/releases/tag/v3.1.1 for more. #### Does this PR introduce a user-facing change? ```release-note 升级 Spring Boot 至 3.1.1 ``` --- application/build.gradle | 2 +- gradle.properties | 1 - platform/application/build.gradle | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/application/build.gradle b/application/build.gradle index 3af02f4cd..85f1e8d73 100644 --- a/application/build.gradle +++ b/application/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version '3.1.0' + id 'org.springframework.boot' version '3.1.1' id 'io.spring.dependency-management' version '1.1.0' id "com.gorylenko.gradle-git-properties" version "2.3.2" id "checkstyle" diff --git a/gradle.properties b/gradle.properties index fa3baf5b4..f16f4c357 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1 @@ version=2.7.0-SNAPSHOT -r2dbc-mysql.version=1.0.2 diff --git a/platform/application/build.gradle b/platform/application/build.gradle index 868db60e0..35f2d1d9e 100644 --- a/platform/application/build.gradle +++ b/platform/application/build.gradle @@ -1,7 +1,7 @@ import org.springframework.boot.gradle.plugin.SpringBootPlugin plugins { - id 'org.springframework.boot' version '3.1.0' apply false + id 'org.springframework.boot' version '3.1.1' apply false id 'java-platform' id 'halo.publish' id 'signing'