com.brambolt.gradle.patching
Owner: Brambolt
A Gradle plug-in for creating and applying patch files using Google's diffutils library.
https://github.com/brambolt/gradle-patching
Sources: https://github.com/brambolt/gradle-patching
Version 2020.10.09-4218
2020.10.09-4218
Created 09 October 2020.
A Gradle plugin for creating and applying patch files using the Googles diffutils library.
Using the plugins DSL:
plugins {
id("com.brambolt.gradle.patching") version "2020.10.09-4218"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.brambolt.gradle:gradle-patching:2020.10.09-4218")
}
}
apply(plugin = "com.brambolt.gradle.patching")
Using the plugins DSL:
plugins {
id "com.brambolt.gradle.patching" version "2020.10.09-4218"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.brambolt.gradle:gradle-patching:2020.10.09-4218"
}
}
apply plugin: "com.brambolt.gradle.patching"