Skip to content

Instantly share code, notes, and snippets.

@anhtranbk
Created July 28, 2017 07:54
Show Gist options
  • Save anhtranbk/b9343d2896af0a7984acd7c2ac497759 to your computer and use it in GitHub Desktop.
Save anhtranbk/b9343d2896af0a7984acd7c2ac497759 to your computer and use it in GitHub Desktop.
Gradle fatJar simple
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile 'org.mindrot:jbcrypt:0.3m'
}
jar {
from {
(configurations.runtime).collect {
it.isDirectory() ? it : zipTree(it)
}
}
manifest {
attributes("Main-Class": "Main" )
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment