Gradle - 通过配置使用项目依赖项
2018-12-18
861
我正在使用 Gradle 5.0 和 Kotlin DSL。如何将另一个 gradle 子项目中的配置作为子项目的依赖项包含在内? 我有以下设置:
root
|--A
|--B
现在,在我的 B 项目中,我想包含具有特定配置的项目 A:
dependencies {
testImplementation(project(":A", "testUtilsCompile"))
}
所有子项目的源集定义如下:
project.the<SourceSetContainer>().register("testUtils", {
java.srcDir("src/test-utils/java")
resources.srcDir("src/test-utils/resources")
compileClasspath += project.the<SourceSetContainer>().named("main").get().output
runtimeClasspath += project.the<SourceSetContainer>().named("main").get().output
})
project.the<SourceSetContainer>().named("test").configure({
compileClasspath += project.the<SourceSetContainer>().named("testUtils").get().output
runtimeClasspath += project.the<SourceSetContainer>().named("testUtils").get().output
})
project.configurations.named("testUtilsCompile").get().extendsFrom(project.configurations.named("testCompile").get())
project.configurations.named("testUtilsRuntime").get().extendsFrom(project.configurations.named("testRuntime").get())
只要在一个子项目中,一切似乎都正常工作,但是当我尝试使用位于另一个子项目的 testUtils 源集中的类时,它不起作用。有人知道为什么吗?
1个回答
以防有人偶然发现这一点。我忘记在我的项目 A 中发布一个工件了:
project.tasks.register("jarTestUtils", Jar::class) {
classifier = "testUtils"
from(project.the<SourceSetContainer>().named("testUtils").get().output)
}
project.artifacts {
add("testUtilsCompile", project.tasks.named("jarTestUtils").get())
}
之后,我在 B 项目中更改了这一点:
dependencies {
testImplementation(project(":A", "testUtilsCompile"))
}
然后它就起作用了..
Joschi
2018-12-19