34

我对此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

4

1 回答 1

55

一个构建只能有一个settings.gradle文件。假设settings.gradle在根目录中并包含如下项目:

include "P1:PP1"

您可以像这样添加编译依赖项:

dependencies {
    compile(project(":P1:PP1"))
}

有关详细信息,请参阅Gradle 用户指南中的“多项目构建”一章。

于 2012-11-28T06:11:50.367 回答