Last active
May 1, 2018 18:47
-
-
Save JohnZavyn/abcde341aad1d32fab18017a91dde5b5 to your computer and use it in GitHub Desktop.
Spring Boot Maven Plugin that Includes all dependency JARs in a WAR or JAR package
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
... | |
<packaging>war</packaging> | |
... | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-tomcat</artifactId> | |
</dependency> | |
... | |
<plugin> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-maven-plugin</artifactId> | |
<configuration> | |
<classifier>exec</classifier> | |
</configuration> | |
</plugin> | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment