Created
April 12, 2013 07:06
-
-
Save andresteingress/5370086 to your computer and use it in GitHub Desktop.
Groovy Common Extensions not found in groovyConsole and scripts
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
| @Grapes(Grab(group='com.bloidonia', module='groovy-common-extensions', version='0.4.1')) | |
| def f = new File('test.zip') | |
| f.unzip(new File('test')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solution: the @ at Grab is missing:
@Grapes(@grab(group='com.bloidonia', module='groovy-common-extensions', version='0.4.1'))