Add native image manifest entry
A manifest entry `Spring-Boot-Native-Processed: true` is added to the jar manifest by the Maven or Gradle plugin when the jar has been built for use in a native image. With the Gradle plugin, this is done in reaction to the GraalVM Native Image Plugin being applied to the project. With the Maven plugin, this is done when the `native` profile is applied to the build.pull/35256/head
parent
5ac6a3d90b
commit
23ae91b008
@ -0,0 +1,8 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.springframework.boot'
|
||||
id 'org.springframework.boot.aot'
|
||||
}
|
||||
|
||||
apply plugin: 'org.graalvm.buildtools.native'
|
||||
|
Loading…
Reference in New Issue