Last active
August 29, 2016 13:42
-
-
Save itrion/2184bb088381d6bed51765e884fa3f7a to your computer and use it in GitHub Desktop.
create a jar with dependencies included in gradle
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
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