取決於另一個 Gradle 專案

對於多專案 gradle 構建,有時你可能需要依賴構建中的另一個專案。為此,你需要在專案的依賴項中輸入以下內容:

dependencies {
    compile project(':OtherProject')
}

其中':OtherProject'是專案的 gradle 路徑,從目錄結構的根目錄引用。

要在 build.gradle 檔案的上下文中使':OtherProject'可用,請將其新增到相應的 settings.gradle

include ':Dependency'
project(':Dependency').projectDir = new File('/path/to/dependency')

如需更詳細的解釋,你可以參考搖籃的官方文件在這裡