uk.jamierocks.propatcher
Owner: Jamie Mansfield
The Gradle patching plugin.
Sources: https://github.com/jamierocks/propatcher
Version 2.0.1 (latest)
2.0.1
Created 13 October 2021.
ProPatcher is a Gradle plugin for creating .patch files on the go.
Using the plugins DSL:
plugins {
id("uk.jamierocks.propatcher") version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.uk.jamierocks:propatcher:2.0.1")
}
}
apply(plugin = "uk.jamierocks.propatcher")
Using the plugins DSL:
plugins {
id "uk.jamierocks.propatcher" version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.uk.jamierocks:propatcher:2.0.1"
}
}
apply plugin: "uk.jamierocks.propatcher"