com.star-zero.gradle.githook
Owner: Kenji Abe
Automatically create git hook scripts.
https://github.com/STAR-ZERO/gradle-githook
Sources: https://github.com/STAR-ZERO/gradle-githook.git
Version 1.2.1 (latest)
Created 29 August 2020.
Automatically create git hook scripts.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.star-zero.gradle.githook") version "1.2.1"
}
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("com.star-zero.gradle.githook:com.star-zero.gradle.githook.gradle.plugin:1.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.star-zero.gradle.githook") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.star-zero.gradle.githook:com.star-zero.gradle.githook.gradle.plugin:1.2.1") } } apply(plugin = "com.star-zero.gradle.githook")
- Applying plugins to all subprojects .