Search Gradle plugins

Version 0.0.1

0.0.1

Created 24 April 2020.

Configure shared Git hooks right from your Gradle buildscript

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.jakemarsden.git-hooks") version "0.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.jakemarsden:git-hooks-gradle-plugin:0.0.1")
      }
    }
    
    apply(plugin = "com.github.jakemarsden.git-hooks")
  • Applying plugins to all subprojects .