ca.coglinc.githook
Owner: Sebastien Robert
A gradle plugin to share git hooks in a project
https://github.com/johnmartel/git-hook-gradle-plugin
Sources: https://github.com/johnmartel/git-hook-gradle-plugin
Version 1.0.1 (latest)
Created 19 October 2016.
A gradle plugin to share git hooks in a project
Add this plugin to your build using the plugins DSL:
plugins {
id("ca.coglinc.githook") version "1.0.1"
}
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("ca.coglinc.githook:ca.coglinc.githook.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("ca.coglinc.githook") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ca.coglinc.githook:ca.coglinc.githook.gradle.plugin:1.0.1") } } apply(plugin = "ca.coglinc.githook")
- Applying plugins to all subprojects .