From 9aa2854e00903755b07ee1cc02f05a2cc5529f69 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 17 Oct 2022 13:05:15 -0700 Subject: [PATCH] Remove the execution of NBT in the native maven profile Update `spring-boot-starter-parent` to remove the `native-compile` execution. Closes gh-31770 --- .../spring-boot-starter-parent/build.gradle | 8 -------- 1 file changed, 8 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 6cd10709717..a04820ecc21 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 @@ -254,14 +254,6 @@ publishing.publications.withType(MavenPublication) { delegate.enabled('true') } } - executions { - execution { - delegate.id('native-compile') - goals { - delegate.goal('compile-no-fork') - } - } - } } } }