com.stefletcher.gradle.git-hook-plugin
Owner: Stephen Fletcher
A plugin to generate clientside git commit checking
Version 0.1-SNAPSHOT (latest)
0.1-SNAPSHOT
Created 14 August 2016.
A plugin to generate clientside git commit checking
Using the plugins DSL:
plugins {
id("com.stefletcher.gradle.git-hook-plugin") version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.stefletcher.gradle:gradleplugin2:0.1-SNAPSHOT")
}
}
apply(plugin = "com.stefletcher.gradle.git-hook-plugin")
Using the plugins DSL:
plugins {
id "com.stefletcher.gradle.git-hook-plugin" version "0.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stefletcher.gradle:gradleplugin2:0.1-SNAPSHOT"
}
}
apply plugin: "com.stefletcher.gradle.git-hook-plugin"