Search Gradle plugins

eu.bambooapps.gradle.plugin.githook

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.1.0 (latest)

Created 22 April 2024.

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.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("eu.bambooapps.gradle:plugin:1.1.0")
  }
}

apply(plugin = "eu.bambooapps.gradle.plugin.githook")

Using the plugins DSL:

plugins {
  id "eu.bambooapps.gradle.plugin.githook" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "eu.bambooapps.gradle:plugin:1.1.0"
  }
}

apply plugin: "eu.bambooapps.gradle.plugin.githook"

Learn how to apply plugins to subprojects