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

1.1.26

Created 04 August 2024.

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.1.26"
}

See also:

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