Search Gradle plugins

com.zegreatrob.tools.tagger

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.48

1.0.48

Created 13 September 2023.

This plugin automates generation of version numbers based on commit messages and git tags.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.tools.tagger") version "1.0.48"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.tools:tagger-plugin:1.0.48")
      }
    }
    
    apply(plugin = "com.zegreatrob.tools.tagger")
  • Applying plugins to all subprojects .