Grails script dependency error

Posted by Don on Stack Overflow See other posts from Stack Overflow or by Don
Published on 2010-05-20T12:36:40Z Indexed on 2010/05/20 12:40 UTC
Read the original article Hit count: 178

Filed under:
|
|

Hi,

I have a Grails (GAnt) script with the following target:

includeTargets << grailsScript("_GrailsInit")
includeTargets << grailsScript("_GrailsPlugins"

target('default': "Does something awesome!") {
    depends(updatePluginsList)

    // Implementation omitted
}

Since upgrading to Grails 1.3.1, when I run this I get the error

groovy.lang.MissingPropertyException: No such property: updatePluginsList for class:

So it appears that the target updatePluginsList has disappeared. This target used to be provided by Grails, so I guess it's either been removed or renamed in a recent release?

Thanks, Don

© Stack Overflow or respective owner

Related posts about groovy

Related posts about grails