net.minecrell.gitpatcher
Owner: Minecrell
A Gradle plugin to manage patches for Git repositories
https://github.com/Minecrell/gitpatcher
Sources: https://github.com/Minecrell/gitpatcher
Version 0.1-SNAPSHOT
Created 23 May 2015.
A Gradle plugin to manage patches for Git repositories
Add this plugin to your build using the plugins DSL:
plugins {
id("net.minecrell.gitpatcher") version "0.1-SNAPSHOT"
}
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("net.minecrell.gitpatcher:net.minecrell.gitpatcher.gradle.plugin:0.1-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("net.minecrell.gitpatcher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.minecrell.gitpatcher:net.minecrell.gitpatcher.gradle.plugin:0.1-SNAPSHOT") } } apply(plugin = "net.minecrell.gitpatcher")
- Applying plugins to all subprojects .