我有一个多模块 gradle 项目,我想在我的依赖模块中使用共享模块中的一些测试类。
dependencies {
compile project(':shared-module')
testCompile project(':shared-module'), classifier: 'test-jar'
}
第一个依赖项有效,但 testCompile 依赖项不起作用。我似乎找不到它的语法。maven 等价物是:
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>shared-module</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
你可以做
dependencies {
compile project(':shared-module')
testCompile project(path: ':shared-module', configuration: 'testRuntime')
}
你可以使用星云测试罐插件
注意 Nebula已经弃用了这个插件,因为他们认为测试实用程序应该存在于他们自己的项目中。我倾向于同意他们的观点