> Unfortunately you can't do:
>
> repositories {
> grailsHome()
> }
>
> We don't know why yet. This has something to do with Groovy.
>
> cl = {
> grailsHome()
> }
> cl.delegate = repositories
> cl.call()
Have you tried:
cl = { ... }
cl.resolveStrategy = Closure.DELEGATE_FIRST
cl.delegate = repositories
cl.call()
?
Cheers,
Peter
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
