I'm trying to use the grails standalone plugin with a new grails project but I can't get it to work.
I've added it as a plugin dependency in my BuildConfig.groovy
file:
plugins {
compile: ":standalone:1.2.3"
}
But I get the following error when I attempt to run grails prod build-standalone
:
Script 'BuildStandalone' not found, did you mean:
1) InstallDependency
2) Stats
3) InstallJQuery
4) CreateMultiProjectBuild_
5) TestApp
I tried running grails clean
, grails clean-all
, grails refresh-dependencies
, and grails compile
as answered in this question, but nothing seems to help. I would expect refresh-dependencies
to either download the necessary artifacts or fail trying.
What am I doing wrong?
Here is my environment:
- Mac OS X 10.9.5
- JDK 1.8.0_05
- Grails v2.4.4 installed with GVM