From bd8f53a989f8e920b0d426d2481370d13f1bd1c0 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 23 Sep 2022 14:51:38 +0200 Subject: [PATCH] Use Native Build Tools new goal name Closes gh-32482 --- .../spring-boot-starter-parent/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle b/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle index e8deba8ec9..6cd1070971 100644 --- a/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle +++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-parent/build.gradle @@ -256,9 +256,9 @@ publishing.publications.withType(MavenPublication) { } executions { execution { - delegate.id('native-build') + delegate.id('native-compile') goals { - delegate.goal('build') + delegate.goal('compile-no-fork') } } }