com.github.virtualcitysystems.semver
所有者: 姚志航
一个Gradle插件,允许在CI/CD过程中自动提升补丁版本。
https://github.com/virtualcitySYSTEMS/gradle-plugin-semver/
来源: https://github.com/virtualcitySYSTEMS/gradle-plugin-semver
使用插件块DSL
plugins {
id("com.github.virtualcitysystems.semver") version "1.0.3"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.virtualcitysystems:gradle-plugin-semver:1.0.3")
}
}
apply(plugin = "com.github.virtualcitysystems.semver")
使用插件块DSL
plugins {
id "com.github.virtualcitysystems.semver" version "1.0.3"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.virtualcitysystems:gradle-plugin-semver:1.0.3"
}
}
apply plugin: "com.github.virtualcitysystems.semver"