Skip to content

Instantly share code, notes, and snippets.

@orangeclover
Created October 22, 2013 12:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orangeclover/7099389 to your computer and use it in GitHub Desktop.
Save orangeclover/7099389 to your computer and use it in GitHub Desktop.
Gradleでzipファイルを解凍する
task unzip(type: Copy) {
def zipFile = file("${temporaryDir}/quickstart.zip")
def outputDir = file("${temporaryDir}/")
from zipTree(zipFile)
into outputDir
}
@orangeclover
Copy link
Author

このコードのブログはこちら。
http://orangeclover.hatenablog.com/entry/2013/10/22/211033

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment