Upgrade Spring Boot to 3.2.4 (#5568)

#### What type of PR is this?

/kind cleanup
/area core

#### What this PR does / why we need it:

This PR mainly upgrades Spring Boot to [3.2.4](https://github.com/spring-projects/spring-boot/releases/tag/v3.2.4), and also upgrades other Gradle plugins.

#### Does this PR introduce a user-facing change?

```release-note
升级依赖 Spring Boot 至 3.2.4
```
pull/5351/head
John Niang 2024-03-22 16:28:08 +08:00 committed by GitHub
parent e798866eb7
commit e76d800b07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
plugins {
id 'org.springframework.boot' version '3.2.3' apply false
id 'io.spring.dependency-management' version '1.1.0' apply false
id "com.gorylenko.gradle-git-properties" version "2.3.2" apply false
id "de.undercouch.download" version "5.3.1" apply false
id "io.freefair.lombok" version "8.4" apply false
id 'org.springframework.boot' version '3.2.4' apply false
id 'io.spring.dependency-management' version '1.1.4' 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
id 'org.gradle.crypto.checksum' version '1.4.0' apply false
id "com.github.node-gradle.node" version "7.0.1" apply false
id "com.github.node-gradle.node" version "7.0.2" apply false
}