Created
May 2, 2018 01:08
-
-
Save cfsilence/f7cc8e18969c279114b545f40ff5adc9 to your computer and use it in GitHub Desktop.
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 { | |
dependsOn configurations.runtime | |
manifest { | |
attributes "Main-Class": "$mainClassName" | |
} | |
from { | |
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } | |
} | |
archiveName "app.jar" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment