com.limark.gitflowsemver
Owner: Yohan Liyanage
An opionionated GitFlow SemVer 2.0 versioning plugin that resolves project vesion based on Git Tags and conventions.
https://github.com/OpenLimark/GitFlowSemVerPlugin
Sources: https://github.com/OpenLimark/GitFlowSemVerPlugin
Version 0.3.1 (latest)
0.3.1
Created 10 October 2019.
An opionionated GitFlow SemVer 2.0 versioning plugin that resolves project vesion based on Git Tags and conventions.
Using the plugins DSL:
plugins {
id("com.limark.gitflowsemver") version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.limark.open.gradle.plugins:GitFlowSemVerPlugin:0.3.1")
}
}
apply(plugin = "com.limark.gitflowsemver")
Using the plugins DSL:
plugins {
id "com.limark.gitflowsemver" version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.limark.open.gradle.plugins:GitFlowSemVerPlugin:0.3.1"
}
}
apply plugin: "com.limark.gitflowsemver"