com.github.moleksyuk.vcs-semantic-version
所有者: Mykhailo Oleksiuk
基于 http://semver.org/ 规范构建项目语义版本的 Gradle 插件。
https://github.com/moleksyuk/vcs-semantic-version
使用 插件 DSL
plugins {
id("com.github.moleksyuk.vcs-semantic-version") version "1.1.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.moleksyuk:vcs-semantic-version:1.1.3")
}
}
apply(plugin = "com.github.moleksyuk.vcs-semantic-version")
使用 插件 DSL
plugins {
id "com.github.moleksyuk.vcs-semantic-version" version "1.1.3"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.moleksyuk:vcs-semantic-version:1.1.3"
}
}
apply plugin: "com.github.moleksyuk.vcs-semantic-version"