Remove the execution of NBT in the native maven profile

Update `spring-boot-starter-parent` to remove the `native-compile`
execution.

Closes gh-31770
This commit is contained in:
Phillip Webb 2022-10-17 13:05:15 -07:00
parent 5cee828546
commit 9aa2854e00

View File

@ -254,14 +254,6 @@ publishing.publications.withType(MavenPublication) {
delegate.enabled('true')
}
}
executions {
execution {
delegate.id('native-compile')
goals {
delegate.goal('compile-no-fork')
}
}
}
}
}
}