org.scm.git-manifest
Owner: Pepino
Gradle alternative to Android repo tool (multi source GIT repositories)
https://github.com/jkonecny75/gradle-plugin-git-manifest/wiki
Sources: https://github.com/jkonecny75/gradle-plugin-git-manifest
Version 0.3-alpha (latest)
0.3-alpha
Created 29 May 2018.
Gradle alternative to Android repo tool (multi source GIT repositories)
Using the plugins DSL:
plugins {
id("org.scm.git-manifest") version "0.3-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.jkonecny75:git-manifest:0.3-alpha")
}
}
apply(plugin = "org.scm.git-manifest")
Using the plugins DSL:
plugins {
id "org.scm.git-manifest" version "0.3-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.jkonecny75:git-manifest:0.3-alpha"
}
}
apply plugin: "org.scm.git-manifest"