From fa8f6836bdda07a403abcac044d0877fe73f16bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Sun, 26 May 2024 10:24:53 +0200 Subject: [PATCH] Upgrade Gradle build to Spring Boot 3.3.0 Closes gh-1551 --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 7a7040a0878..c398ece4c35 100644 --- a/build.gradle +++ b/build.gradle @@ -1,8 +1,8 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.2.5' - id 'io.spring.dependency-management' version '1.1.4' - id 'org.graalvm.buildtools.native' version '0.9.28' + id 'org.springframework.boot' version '3.3.0' + id 'io.spring.dependency-management' version '1.1.5' + id 'org.graalvm.buildtools.native' version '0.10.2' id 'io.spring.javaformat' version '0.0.41' id "io.spring.nohttp" version "0.0.11" } @@ -14,7 +14,7 @@ apply plugin: 'io.spring.javaformat' gradle.startParameter.excludedTaskNames += [ "checkFormatAot", "checkFormatAotTest" ] group = 'org.springframework.samples' -version = '3.2.0' +version = '3.3.0' java { sourceCompatibility = JavaVersion.VERSION_17