Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. task fatJar(type: Jar) {
  2. baseName = "myFatJar"
  3.  
  4. from ("$buildDir/intermediates/classes/release/")
  5. from {
  6. configurations.compile.collect {
  7. it.isDirectory() ? it : zipTree(it)
  8. }
  9. }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement