net.minecrell.gitpatcher
Owner: Minecrell
A Gradle plugin to manage patches for Git repositories
https://github.com/Minecrell/gitpatcher
Sources: https://github.com/Minecrell/gitpatcher
Version 0.9.0 (latest)
0.9.0
Created 03 March 2017.
A Gradle plugin to manage patches for Git repositories
Using the plugins DSL:
plugins {
id("net.minecrell.gitpatcher") version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.minecrell:gitpatcher:0.9.0")
}
}
apply(plugin = "net.minecrell.gitpatcher")
Using the plugins DSL:
plugins {
id "net.minecrell.gitpatcher" version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.minecrell:gitpatcher:0.9.0"
}
}
apply plugin: "net.minecrell.gitpatcher"