【发布时间】:2023-03-03 01:14:01
【问题描述】:
我似乎无法运行
grails shiro-quick-start --prefix=org.example.Shiro
当我使用 Grails 2.3 时在终端中。有谁知道这是为什么?
我感觉这与我无法跑步有关
grails install-plugin shiro
正如它所说的那样
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 ":shiro:1.2.0"
}
}
【问题讨论】:
标签: grails grails-plugin shiro