Skip to content

Instantly share code, notes, and snippets.

@cfsilence
Created May 2, 2018 01:08
Show Gist options
  • Save cfsilence/f7cc8e18969c279114b545f40ff5adc9 to your computer and use it in GitHub Desktop.
Save cfsilence/f7cc8e18969c279114b545f40ff5adc9 to your computer and use it in GitHub Desktop.
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