com.gtramontina.ghooks.gradle
简单的 Git 钩
https://github.com/gtramontina/ghooks.gradle
源代码: https://github.com/gtramontina/ghooks.gradle
使用plugins DSL
plugins {
id("com.gtramontina.ghooks.gradle") version "2.0.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.gtramontina.ghooks.gradle:ghooks.gradle:2.0.0")
}
}
apply(plugin = "com.gtramontina.ghooks.gradle")
使用plugins DSL
plugins {
id "com.gtramontina.ghooks.gradle" version "2.0.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.gtramontina.ghooks.gradle:ghooks.gradle:2.0.0"
}
}
apply plugin: "com.gtramontina.ghooks.gradle"