Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- task fatJar(type: Jar) {
- manifest {
- attributes 'Implementation-Title': 'Implementation',
- 'Implementation-Version': version,
- 'Main-Class': 'main'
- }
- baseName = project.name + '-all'
- from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
- with jar
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement