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 2022.05.01-7056
2022.05.01-7056
Created 20 April 2022.
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 "2022.05.01-7056"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.brambolt.gradle:brambolt-gradle-patching:2022.05.01-7056")
}
}
apply(plugin = "com.brambolt.gradle.patching")
Using the plugins DSL:
plugins {
id "com.brambolt.gradle.patching" version "2022.05.01-7056"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.brambolt.gradle:brambolt-gradle-patching:2022.05.01-7056"
}
}
apply plugin: "com.brambolt.gradle.patching"