我对此Gradle Multi-Module Project Setup有相同的问题,但我必须使用项目编译依赖项来构建并且不能使用在上述问题中作为解决方案给出的库(jar)依赖项解决方案。
Root
|__ P1
| |_ PP1
| |_ PP2
|
|__ P2
|_PP3
|_PP4
PP1、PP2、PP3、PP4是子项目,每个都有自己的build.gradle文件;P1 和 P2 也有 build.gradle 和 settings.gradle 文件。
如何在 PP3 的 build.gradle 文件中将 PP1 声明为编译依赖项?
apply plugin: 'java'
dependencies {
compile('P1:PP1') //does not work
compile group: 'P1', name: 'PP1', version: '0.1' // jar library dependency not an option
compile('{ant_target}')? //follow up question - an ant target as a dependency
}
我正在运行 Gradle v1.2