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.2.32
1.2.32
Created 22 August 2024.
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.2.32"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.zegreatrob.tools:tagger-plugin:1.2.32")
}
}
apply(plugin = "com.zegreatrob.tools.tagger")
Using the plugins DSL:
plugins {
id "com.zegreatrob.tools.tagger" version "1.2.32"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.zegreatrob.tools:tagger-plugin:1.2.32"
}
}
apply plugin: "com.zegreatrob.tools.tagger"