Maintained by aalmiray
Gradle FatJar Plugin allows you to create JAR file with all dependencies bundled inside. It handles files in META-INF/services
directory gracefully by merging them. It also allows you to create slim WAR file which contains only JAR with dependencies. Classes are also bundled into the JAR instead of putting them into WEB-INF/classes
.
Website | https://github.com/musketyr/gradle-fatjar-plugin |
---|---|
Author | musketyr |
Version | 0.2 |
buildscript { repositories { jcenter() } dependencies { classpath 'eu.appsatori:gradle-fatjar-plugin:0.2' } } apply plugin: 'fatjar'