I want to change the name of the generated executables in Spring Native with Maven.
Default is the <artifactId>
from the pom.xml
.
If we want to specify the name of the resulting .jar file, we have an option to configure this with <finalName>
inside the spring-boot-maven-plugin
plugin configuration.
Is there a similar configuration property to allow the same behavior for the native-image-plugin
?