Skip to content

Instantly share code, notes, and snippets.

@JohnZavyn
Last active May 1, 2018 18:47
Show Gist options
  • Save JohnZavyn/abcde341aad1d32fab18017a91dde5b5 to your computer and use it in GitHub Desktop.
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
...
<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