我有一个相同的问题,这个摇篮多模块项目设置 ,但我必须使用项目编译依赖于建立和不能使用已给出上述问题的解决方案库(JAR)依赖的解决方案。
Root
|__ P1
| |_ PP1
| |_ PP2
|
|__ P2
|_PP3
|_PP4
PP1,PP2,PP3和PP4的子工程,每个都有自己的build.gradle文件; P1和P2还具有的build.gradle和settings.gradle文件。
我怎样才能申报PP1在PP3的文件的build.gradle编译依赖?
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
}
我正在摇篮V1.2