maven_templates.native-image-maven-plugin.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of project-keeper-core Show documentation
Show all versions of project-keeper-core Show documentation
Project keeper is a tool that verifies and fixes project setups.
<plugin> <groupId>org.graalvm.nativeimage</groupId> <artifactId>native-image-maven-plugin</artifactId> <version>21.2.0</version> <executions> <execution> <goals> <goal>native-image</goal> </goals> <phase>package</phase> </execution> </executions> <configuration> <skip>${native-image.skip}</skip> <imageName>${project.artifactId}</imageName> <buildArgs> --no-fallback -H:ReflectionConfigurationFiles=${project.basedir}/src/main/reflect-config.json </buildArgs> </configuration> </plugin>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy