이 문제는 Gradle Multi-Module Project Setup과 동일하지만 프로젝트를 컴파일 할 때 종속성을 사용해야하고 위의 질문에서 해결 방법으로 제공된 라이브러리 (병) 종속성 솔루션을 사용할 수 없습니다. .프로젝트 종속성이있는 중첩 된 다중 프로젝트 프로젝트
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
}
나는 빌드는 하나의 settings.gradle
파일을 가질 수 Gradle을 1.2
[2 단계 이상의 gradle 프로젝트를 설정할 수 있습니까?] (http://stackoverflow.com/questions/15299004/is-it-possible-to-set-up-a-) gradle-project-with-more-than-2-levels) –