tane.mahuta.gradle.version-plugin
拥有者: Christian Heike
一个提供增强版本功能性的插件
https://github.com/Tanemahuta/gradle-vgfr-plugin
来源: https://github.com/Tanemahuta/gradle-vgfr-plugin
使用 插件 DSL
plugins {
id("tane.mahuta.gradle.version-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-version:1.0.1")
}
}
apply(plugin = "tane.mahuta.gradle.version-plugin")
使用 插件 DSL
plugins {
id "tane.mahuta.gradle.version-plugin" version "1.0.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.tane.mahuta.build:gradle-plugin-version:1.0.1"
}
}
apply plugin: "tane.mahuta.gradle.version-plugin"