Skip to content

Instantly share code, notes, and snippets.

@itrion
Last active August 29, 2016 13:42
Show Gist options
  • Save itrion/2184bb088381d6bed51765e884fa3f7a to your computer and use it in GitHub Desktop.
Save itrion/2184bb088381d6bed51765e884fa3f7a to your computer and use it in GitHub Desktop.
create a jar with dependencies included in gradle
jar {
manifest {
attributes 'Main-Class': 'org.itrion.MainClass'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment