I have Grails 2.3.0, and when I run the command run-app I get this message:
> | Error Error executing script RunApp:
> _GrailsClasspath_groovy$_run_closure1 (Use --stacktrace to see the full trace)
I have Grails 2.3.0, and when I run the command run-app I get this message:
> | Error Error executing script RunApp:
> _GrailsClasspath_groovy$_run_closure1 (Use --stacktrace to see the full trace)
target folder from your app directory..grails/.slcache folder (is in your /home). grails run-app again.Do not work for me. I had to delete the ~/.grails/$version/projects/$projectName/scriptCache directory files.
And execute grails clean, before execute grails run-app again.
I ran into this issue with GGTS 3.4.0 and Grails 2.3.1. Following these steps resolved it for me:
<workspace>\ggts-3.4.0.RELEASE\.metadata\.plugins\org.grails.ide.eclipse.core\2.3.1\.slcachecleanrun-appWhat worked for me is to totally empty the .grails directory under my home directory
Do a grails clean first. followed by a grails compile and finally grails --stacktrace --verbose run-app
Also make sure you copied the new BuildConfig into your conf directory. I had problems until I did that. The file has a lot of new config that can affect the way things are run
Hope that helps