I'd like to use the Spock plugin for my Grails project. The problem that I'm having is that GGTS doesn't configure the build path. So I can generate the following integration test in GGTS, but it will then complain about not being able to find the grails.plugin.spock.IntegrationSpec package.
package junk
import grails.plugin.spock.IntegrationSpec
class MyIntegrationTestSpec extends IntegrationSpec {
def setup() {
}
def cleanup() {
}
void "test something"() {
}
}
I've used both the Grails Plugin manager and editing the BuildConfig.groovy file (like the plugin documentation says to do). I've done a Grails Refresh Dependencies on my project. I even did a grails clean and grails compile. Nothing seems to work.