我有Grails 2.3.1
。
当我尝试安装新插件时,我收到以下控制台消息:
Since Grails 2.3, it is no longer possible to install plugins using the install-plugin command.
Plugins must be declared in the grails-app/conf/BuildConfig.groovy file.
Example:
grails.project.dependency.resolution = {
...
plugins {
compile ":console:1.2"
}
}