You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a Spring Boot jar has been built with AOT processing enabled, an entry named Spring-Boot-Aot-Processed with a value of true should be added to the META-INF/MANIFEST.MF file. This will allow tooling such as Cloud Native Buildpacks to make decisions about how to package the application.
The text was updated successfully, but these errors were encountered:
I wonder if this may undermine our goal of no longer setting BP_NATIVE_IMAGE (#32884).
If applying the org.springframework.boot.aot plugin to a Gradle project results in the manifest containing Spring-Boot-Aot-Processed: true, buildpacks would then try to build a native image even though the native image plugin hasn't been applied. To overcome this, I think we'd have to default to setting BP_NATIVE_IMAGE to false and then remove that setting once the native image plugin has been applied.
When a Spring Boot jar has been built with AOT processing enabled, an entry named
Spring-Boot-Aot-Processed
with a value oftrue
should be added to theMETA-INF/MANIFEST.MF
file. This will allow tooling such as Cloud Native Buildpacks to make decisions about how to package the application.The text was updated successfully, but these errors were encountered: