com.etherealscope.gradlegitflowversionplugin
所有者: Jakub Venglar
git flow 中递增版本号的插件
https://github.com/etherealscope/gradle-git-flow-version-plugin
来源: https://github.com/etherealscope/gradle-git-flow-version-plugin.git
使用 plugins DSL
plugins {
id("com.etherealscope.gradlegitflowversionplugin") version "1.14.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.etherealscope:gradle-git-flow-version-plugin:1.14.0")
}
}
apply(plugin = "com.etherealscope.gradlegitflowversionplugin")
使用 plugins DSL
plugins {
id "com.etherealscope.gradlegitflowversionplugin" version "1.14.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.etherealscope:gradle-git-flow-version-plugin:1.14.0"
}
}
apply plugin: "com.etherealscope.gradlegitflowversionplugin"