Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 27 November 2024.

Gradle plugin to integrate lefthook into a gradle project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.fizzpod.lefthook") version "0.1.0"
}

See also:

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