--
You received this message because you are subscribed to the Google Groups "Spock Framework - User" group.
To post to this group, send email to spockfr...@googlegroups.com.
To unsubscribe from this group, send email to spockframewor...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/spockframework?hl=en.
Have you tried the groovy eclipse plugin mailing list? If you're out
of options you could try having Gradle generate your eclipse project.
If it's a classpath/dependency issue that would fix it:
------ build.gradle ------
apply plugin: 'groovy'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
dependencies {
groovy 'org.codehaus.groovy:groovy-all:1.7.6'
testCompile 'org.spockframework:spock-core:0.5-groovy-1.7'
}
------ build.gradle ------
Once you have gradle installed, execute "gradle eclipse" from the
command-line.
Cheers,
Merlyn