Search Gradle plugins

tech.jknair.githooksteam

Plugin to setup & share git hooks across java teams through VCS like every other config.

https://jknair.tech/

Sources: https://github.com/kjknair/GitHooksTeam

Version 1.0.0-SNAPSHOT

Created 14 June 2020.

Plugin to setup & share git hooks across java teams through VCS like every other config.

Add this plugin to your build using the plugins DSL:

plugins {
  id("tech.jknair.githooksteam") version "1.0.0-SNAPSHOT"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("tech.jknair.githooksteam:tech.jknair.githooksteam.gradle.plugin:1.0.0-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tech.jknair.githooksteam")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tech.jknair.githooksteam:tech.jknair.githooksteam.gradle.plugin:1.0.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "tech.jknair.githooksteam")
  • Applying plugins to all subprojects .