Skip to content

Instantly share code, notes, and snippets.

@rokinmaharjan
Created January 14, 2019 09:07
Show Gist options
  • Select an option

  • Save rokinmaharjan/750d814fe96876d9275b0414d2e8658c to your computer and use it in GitHub Desktop.

Select an option

Save rokinmaharjan/750d814fe96876d9275b0414d2e8658c to your computer and use it in GitHub Desktop.
Creating zip using gradle
task buildZip(type: Zip) {
from compileJava
from processResources
into('lib') {
from configurations.compileClasspath
}
}
build.dependsOn buildZip
Then run ./gradlew clean build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment