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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.brambolt.gradle.patching") version "2020.06.03-4007"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.brambolt.gradle:gradle-patching:2020.06.03-4007")
      }
    }
    
    apply(plugin = "com.brambolt.gradle.patching")
  • Applying plugins to all subprojects .