Search Gradle plugins

Version 0.1-alpha (latest)

Created 28 May 2018.

Gradle alternative to Android repo tool (multi source GIT repositories)

Using the plugins DSL:

plugins {
  id("org.git.manifest") version "0.1-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.1-alpha")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.git.manifest"

Learn how to apply plugins to subprojects