grails run-app-httpsI've got an exception:
Could not execute method PluginManagerHolder.And application terminated immediately.
No such property: PluginManagerHolder for class: RunAppHttps_groovy
As I discovered later problem lied in RunAppHttps.groovy script which is located under GRAILS_HOME\scripts. You have to add missing import in it:
import org.codehaus.groovy.grails.plugins.PluginManagerHolder
That solved the problem. Enjoy!
No comments:
Post a Comment