grails-coffeescript-resources
grails-coffeescript-resources copied to clipboard
Error executing tag <r:layoutResources>: No module found with name [...] after grails clean
Assuming we have a view which use with <r:require module="..." /> for any module defined at ApplicationResources.groovy:
- grails clean
- grails run-app
- open in a browser the url corresponding to the view with use of <r:require module="..." />
- bang! exception
It's enough to stop the app and run it again - all is fine again, at least until next grails clean. I've checked, there is no such issue with version 0.3.5 of coffee resources plugin
dependencies.groovy lists resources 1.1.6 as a dependency:
plugins {
build ":release:2.0.0", {
export = false
}
runtime(":resources:1.1.6")
}
This could be causing the problem.