我想在我目前的grails 2.3.7项目中使用RemoteControl插件。我把它包含在BuildConfig.groovy
:
plugins {
compile ":remote-control:1.5"
}
当我使用grails test-app
开始测试时,我收到错误:
unable to resolve class RemoteControl@ line 12, column 18.
def remote = new RemoteControl()
我在 spock 测试中使用了RemoteControl,我已经执行了grails refreshDependencies
,但我仍然收到错误。
有任何解决问题的想法吗?不应该在编译时提供插件中的所有类吗?