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.06.03-4009
Created 24 June 2020.
                A Gradle plugin for creating and applying patch files using the Googles diffutils library.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.brambolt.gradle.patching") version "2020.06.03-4009"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.brambolt.gradle.patching:com.brambolt.gradle.patching.gradle.plugin:2020.06.03-4009") }It can then be applied in the precompiled script plugin:plugins { id("com.brambolt.gradle.patching") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.brambolt.gradle.patching:com.brambolt.gradle.patching.gradle.plugin:2020.06.03-4009") } } apply(plugin = "com.brambolt.gradle.patching") - Applying plugins to all subprojects .