Last active
April 4, 2021 08:50
-
-
Save mehmetcemyucel/6a3cbc883a4113f238216fa2e29527ff to your computer and use it in GitHub Desktop.
spring-native-image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
<configuration> | |
<image> | |
<builder>paketobuildpacks/builder:tiny</builder> | |
<env> | |
<BP_NATIVE_IMAGE>true</BP_NATIVE_IMAGE> | |
</env> | |
</image> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment