From d002579456bde4486e0d63ceed80b200bfd431d3 Mon Sep 17 00:00:00 2001 From: John Niang Date: Wed, 27 Sep 2023 00:02:23 -0500 Subject: [PATCH] Upgrade to Spring Boot 3.1.4 (#4665) 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.10.0 #### What this PR does / why we need it: Upgrade to Spring Boot [3.1.4](https://github.com/spring-projects/spring-boot/releases/tag/v3.1.4). #### Does this PR introduce a user-facing change? ```release-note 升级依赖 Spring Boot 至 3.1.4 ``` --- application/build.gradle | 2 +- platform/application/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/build.gradle b/application/build.gradle index b9a642f22..c64abd253 100644 --- a/application/build.gradle +++ b/application/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version '3.1.3' + id 'org.springframework.boot' version '3.1.4' id 'io.spring.dependency-management' version '1.1.0' id "com.gorylenko.gradle-git-properties" version "2.3.2" id "checkstyle" diff --git a/platform/application/build.gradle b/platform/application/build.gradle index fa1b40d6d..7311a54c8 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.3' apply false + id 'org.springframework.boot' version '3.1.4' apply false id 'java-platform' id 'halo.publish' id 'signing'