Search Gradle plugins

Version 2.0.1 (latest)

2.0.1

Created 13 October 2021.

ProPatcher is a Gradle plugin for creating .patch files on the go.

Add this plugin to your build using the plugins DSL:

plugins {
  id("uk.jamierocks.propatcher") version "2.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.uk.jamierocks:propatcher:2.0.1")
      }
    }
    
    apply(plugin = "uk.jamierocks.propatcher")
  • Applying plugins to all subprojects .