Search Gradle plugins

Version 0.0.1-a.2 (latest)

0.0.1-a.2

Created 10 June 2024.

Cutting-edge Gradle plugin designed to streamline the management of Git hooks within your project

Using the plugins DSL:

plugins {
  id("io.github.andrew-malitchuk.yaghm") version "0.0.1-a.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.andrew-malitchuk:yaghm:0.0.1-a.2")
  }
}

apply(plugin = "io.github.andrew-malitchuk.yaghm")

Using the plugins DSL:

plugins {
  id "io.github.andrew-malitchuk.yaghm" version "0.0.1-a.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.andrew-malitchuk:yaghm:0.0.1-a.2"
  }
}

apply plugin: "io.github.andrew-malitchuk.yaghm"

Learn how to apply plugins to subprojects