Creating a gant script to compile external module from a grails (v2.3.4) application:
grails create-script compile
With the header below in the code:
includeTargets << grailsScript("_GrailsInit")
includeTargets << grailsScript("_GrailsClasspath")
includeTargets << grailsScript("_GrailsRun")
grails run script returns Error executing script RunScript: No such property: includeTargets for class: Script1
Before that issue i had one with Tomcat plugin dependency, which has been resolved by desactivating the plugin so as to execute the script.
Any help is welcome.