eu.bambooapps.gradle.plugin.githook
Owner:
Andrei Mukamolau
A plugin that helps you with adding Git hooks to the project and ensuring that every developer has the same hooks
https://github.com/bamboo-apps/GitHookPlugin
Sources: https://github.com/bamboo-apps/GitHookPlugin.git
Version 1.0.1 (latest)
Created 13 September 2023.
A plugin that helps you with adding Git hooks to the project and ensuring that every developer has the same hooks
Using the plugins DSL:
plugins {
id("eu.bambooapps.gradle.plugin.githook") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("eu.bambooapps.gradle:plugin:1.0.1")
}
}
apply(plugin = "eu.bambooapps.gradle.plugin.githook")
Using the plugins DSL:
plugins {
id "eu.bambooapps.gradle.plugin.githook" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "eu.bambooapps.gradle:plugin:1.0.1"
}
}
apply plugin: "eu.bambooapps.gradle.plugin.githook"