Search Gradle plugins

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

Using the plugins DSL:

plugins {
  id("com.brambolt.gradle.patching") version "2020.09.29-4205"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.brambolt.gradle:gradle-patching:2020.09.29-4205")
  }
}

apply(plugin = "com.brambolt.gradle.patching")

Using the plugins DSL:

plugins {
  id "com.brambolt.gradle.patching" version "2020.09.29-4205"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.brambolt.gradle:gradle-patching:2020.09.29-4205"
  }
}

apply plugin: "com.brambolt.gradle.patching"

Learn how to apply plugins to subprojects