com.serli.dojo.gradle-safegit
Owner: Quentin Proust
A plugin to handle git hook with in gradle build
https://github.com/SerliDojo/gradle-safegit
Sources: https://github.com/SerliDojo/gradle-safegit.git
Using the plugins DSL:
plugins {
id("com.serli.dojo.gradle-safegit") version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.serli.dojo:gradle-safegit:1.2.1")
}
}
apply(plugin = "com.serli.dojo.gradle-safegit")
Using the plugins DSL:
plugins {
id "com.serli.dojo.gradle-safegit" version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.serli.dojo:gradle-safegit:1.2.1"
}
}
apply plugin: "com.serli.dojo.gradle-safegit"