io.wusa.semver-git-plugin
Owner: Matthias
Project versioning based on semantic versioning via git tags
https://github.com/ilovemilk/semver-git-plugin
Sources: https://github.com/ilovemilk/semver-git-plugin
Version 2.3.7 (latest)
2.3.7
Created 04 December 2020.
Project versioning based on semantic versioning via git tags
Using the plugins DSL:
plugins {
id("io.wusa.semver-git-plugin") version "2.3.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.wusa:semver-git-plugin:2.3.7")
}
}
apply(plugin = "io.wusa.semver-git-plugin")
Using the plugins DSL:
plugins {
id "io.wusa.semver-git-plugin" version "2.3.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.wusa:semver-git-plugin:2.3.7"
}
}
apply plugin: "io.wusa.semver-git-plugin"