我在 Windows 中使用 grails 2.2.1。
我想开发一个依赖于 spring-security-core 插件的插件,所以我将依赖项添加到我的插件的 BuildConfig.groovy 中:
plugins {
compile ':spring-security-core:1.2.7.3'
}
然后在我的 grail 应用程序项目中,我在 BuildConfig.groovy 中指定依赖项:
grails.plugin.location."xxxxx" = "../grails-plugins/xxxx"
之后,当我尝试刷新我的 grail 应用程序项目的依赖项时,它总是提示
unable to resolve class org.springframework.security.authentication.UsernamePasswordAuthenticationToken
这个类是一个依赖于 spring-security-core 插件的类,我的插件也使用这个类。
这是一个grails错误吗?还是我想念什么?请帮忙,提前谢谢!