Search Gradle plugins

Version 0.4.3

Created 24 May 2015.

A Gradle plugin to manage patches for Git repositories

Using the plugins DSL:

plugins {
  id("net.minecrell.gitpatcher") version "0.4.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.minecrell:gitpatcher:0.4.3")
  }
}

apply(plugin = "net.minecrell.gitpatcher")

Using the plugins DSL:

plugins {
  id "net.minecrell.gitpatcher" version "0.4.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.minecrell:gitpatcher:0.4.3"
  }
}

apply plugin: "net.minecrell.gitpatcher"

Learn how to apply plugins to subprojects