com.github.jmongard.git-semver-plugin
所有者: Joel Mongård
基于 git 标签的项目语义化版本化
https://github.com/jmongard/Git.SemVersioning.Gradle
源代码: https://github.com/jmongard/Git.SemVersioning.Gradle
使用 插件 DSL
plugins {
id("com.github.jmongard.git-semver-plugin") version "0.12.10"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.jmongard:git-semver-plugin:0.12.10")
}
}
apply(plugin = "com.github.jmongard.git-semver-plugin")
使用 插件 DSL
plugins {
id "com.github.jmongard.git-semver-plugin" version "0.12.10"
}
使用 旧插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.jmongard:git-semver-plugin:0.12.10"
}
}
apply plugin: "com.github.jmongard.git-semver-plugin"