Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ahmedMubarak2024/73728d4f55c7925a7edf4b8ba2d54a4a to your computer and use it in GitHub Desktop.
Save ahmedMubarak2024/73728d4f55c7925a7edf4b8ba2d54a4a to your computer and use it in GitHub Desktop.
create fat jar.gradle
jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
you may need this if you get errors
tasks.withType(Jar) {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment