我是gradle的新手,并编写了以下配置和依赖项。当我使用eclipse编译时,它给了我错误,因为它没有导入“acceptanceTestCompile”中提到的jar。 我错过了什么吗?任何帮助赞赏。不想迁移到NetBeans(它会在没有问题的情况下获取依赖关系:))
sourceSets {
acceptanceTest {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
}
}
configurations {
acceptanceTestCompile.extendsFrom testCompile
acceptanceTestRuntime.extendsFrom testRuntime
}
dependencies {
acceptanceTestCompile 'org.gebish:geb-spock:0.10.0',
'org.spockframework:spock-core:0.7-groovy-2.0',
'org.seleniumhq.selenium:selenium-java:2.45.0',
'org.seleniumhq.selenium:selenium-firefox-driver:2.43.1',
'org.seleniumhq.selenium:selenium-ie-driver:2.43.1',
'org.seleniumhq.selenium:selenium-support:2.43.1',
'org.jfairy:jfairy:0.3.0'
}
谢谢 KARTHIK