From 70af81675e8ed22f8bfd159bdbfc21db6b933a83 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Tue, 12 Jul 2022 13:05:00 +0200 Subject: [PATCH] Upgrade to Native Build Tools Plugin 0.9.13 The Native Build Tools version is now managed in gradle.properties with the key 'nativeBuildToolsVersion' Closes gh-31688 --- gradle.properties | 1 + spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- spring-boot-project/spring-boot-parent/build.gradle | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index f11c5c6b1c..2e312013c1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,5 +6,6 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8 kotlinVersion=1.7.10 tomcatVersion=10.0.22 +nativeBuildToolsVersion=0.9.13 kotlin.stdlib.default.dependency=false diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 52abfc9118..b320017c9a 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1073,7 +1073,7 @@ bom { ] } } - library("Native Build Tools Plugin", "0.9.11") { + library("Native Build Tools Plugin", "${nativeBuildToolsVersion}") { group("org.graalvm.buildtools") { plugins = [ "native-maven-plugin" diff --git a/spring-boot-project/spring-boot-parent/build.gradle b/spring-boot-project/spring-boot-parent/build.gradle index 4514899cef..e62b98650c 100644 --- a/spring-boot-project/spring-boot-parent/build.gradle +++ b/spring-boot-project/spring-boot-parent/build.gradle @@ -129,7 +129,7 @@ bom { ] } } - library("Native Gradle Plugin", "0.9.11") { + library("Native Gradle Plugin", "${nativeBuildToolsVersion}") { group("org.graalvm.buildtools") { modules = [ "native-gradle-plugin"