Search Gradle plugins

Version 1.0

Created 28 September 2015.

The Gradle patching plugin.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.uk.jamierocks:propatcher:1.0")
  }
}

apply(plugin = "uk.jamierocks.propatcher")

Using the plugins DSL:

plugins {
  id "uk.jamierocks.propatcher" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.uk.jamierocks:propatcher:1.0"
  }
}

apply plugin: "uk.jamierocks.propatcher"

Learn how to apply plugins to subprojects