hu.vissy.semantic-versioning
Owner: Balázs Vissy
A semantic version support based on specially prefixed git commit messages.
https://bitbucket.org/balage42/semantic-versioning-gradle/src/master/
Sources: https://bitbucket.org/balage42/semantic-versioning-gradle/src/master/
Version 1.0.3 (latest)
1.0.3
Created 04 December 2020.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
A semantic version support based on specially prefixed git commit messages.
Using the plugins DSL:
plugins {
id("hu.vissy.semantic-versioning") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("hu.vissy.semantic-versioning:semantic-versioning:1.0.3")
}
}
apply(plugin = "hu.vissy.semantic-versioning")
Using the plugins DSL:
plugins {
id "hu.vissy.semantic-versioning" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "hu.vissy.semantic-versioning:semantic-versioning:1.0.3"
}
}
apply plugin: "hu.vissy.semantic-versioning"