Search Gradle plugins

Version 2.0.0 (latest)

2.0.0

Created 21 April 2023.

Simple Git hooks

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gtramontina.ghooks.gradle") version "2.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.gtramontina.ghooks.gradle:ghooks.gradle:2.0.0")
      }
    }
    
    apply(plugin = "com.gtramontina.ghooks.gradle")
  • Applying plugins to all subprojects .