tane.mahuta.gradle.vcs-plugin
所有者: Christian Heike
一个提供通过 project.vcs 访问 vcs 的插件
https://github.com/Tanemahuta/gradle-vgfr-plugin
源代码: https://github.com/Tanemahuta/gradle-vgfr-plugin
使用 plugins DSL
plugins {
id("tane.mahuta.gradle.vcs-plugin") version "1.0.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.tane.mahuta.build:gradle-plugin-vcs:1.0.1")
}
}
apply(plugin = "tane.mahuta.gradle.vcs-plugin")
使用 plugins DSL
plugins {
id "tane.mahuta.gradle.vcs-plugin" version "1.0.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.tane.mahuta.build:gradle-plugin-vcs:1.0.1"
}
}
apply plugin: "tane.mahuta.gradle.vcs-plugin"