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