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
Three ways to create an executable and fat JAR with Maven : | |
maven-jar-plugin (it doesn't add dependencies inside the final JAR, they have to be in the classpath) | |
Don't forget it goes between the build and plugins tags. | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> |