Created
October 11, 2010 04:50
-
-
Save ksky/619985 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// g100pon #73 AntBuilder | |
// AntBuilderによるファイルダウンロードと解凍 | |
def file = 'groovy-binary-1.7.5.zip' | |
def url = "http://dist.groovy.codehaus.org/distributions/$file" | |
new AntBuilder().with { | |
get(src:url, dest:'.') | |
unzip(src:"./$file", dest:'.') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment