com.zegreatrob.tools.tagger
Owner: Rob Murdock
This plugin automates generation of version numbers based on commit messages and git tags.
https://github.com/robertfmurdock/ze-great-tools
Sources: https://github.com/robertfmurdock/ze-great-tools
Version 1.0.31
1.0.31
Created 07 September 2023.
This plugin automates generation of version numbers based on commit messages and git tags.
Using the plugins DSL:
plugins {
id("com.zegreatrob.tools.tagger") version "1.0.31"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.zegreatrob.tools:tagger-plugin:1.0.31")
}
}
apply(plugin = "com.zegreatrob.tools.tagger")
Using the plugins DSL:
plugins {
id "com.zegreatrob.tools.tagger" version "1.0.31"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.zegreatrob.tools:tagger-plugin:1.0.31"
}
}
apply plugin: "com.zegreatrob.tools.tagger"