Gradle git依赖项

时间:2014-03-16 08:13:20

标签: android gradle android-studio android-gradle

我写了多个模块的android项目。这个模块之一 - 它是gitlab上git仓库中的另一个项目。 我怎么能把它拉进gradle?我尝试了gradle-plugin-git-dependencies和maven-git-commit-id-plugin / pull / 92

buildscript {
    repositories {
        mavenCentral()
    }
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'org.batcha.gradle.plugins:git-dependencies:0.1'
apply from: 'https://raw.github.com/bat-cha/gradle-plugin-git-dependencies/0.1/git-dependencies.gradle'
compile('org.batcha:dummy-project-a:4.2').ext.git = 'https://gitlab.com/Artem_Chekharin/uz.git'
}
}

但他们并没有从git中拉出项目。我使用的是Android Studio 0.5.1。

1 个答案:

答案 0 :(得分:1)

您必须先运行 init Git Dependencies gradle任务。