搜索 Gradle 插件

版本 0.3-alpha(最新版本)

0.3-alpha

创建于 2018 年 5 月 29 日。

Gradle 对 Android 仓库工具的替代品(多源 GIT 仓库)

使用 插件 DSL

plugins {
  id("org.scm.git-manifest") version "0.3-alpha"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.jkonecny75:git-manifest:0.3-alpha")
  }
}

apply(plugin = "org.scm.git-manifest")

使用 插件 DSL

plugins {
  id "org.scm.git-manifest" version "0.3-alpha"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.jkonecny75:git-manifest:0.3-alpha"
  }
}

apply plugin: "org.scm.git-manifest"

了解如何将插件应用于子项目