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.1-SNAPSHOT
0.1-SNAPSHOT
Created 23 May 2015.
A Gradle plugin to manage patches for Git repositories
Using the plugins DSL:
plugins {
id("net.minecrell.gitpatcher") version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.minecrell:gitpitcher:0.1-SNAPSHOT")
}
}
apply(plugin = "net.minecrell.gitpatcher")
Using the plugins DSL:
plugins {
id "net.minecrell.gitpatcher" version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.minecrell:gitpitcher:0.1-SNAPSHOT"
}
}
apply plugin: "net.minecrell.gitpatcher"