Search Gradle plugins

Version 0.3-alpha (latest)

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"

Learn how to apply plugins to subprojects