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

Created 26 November 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.5.28"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.zegreatrob.tools.tagger:com.zegreatrob.tools.tagger.gradle.plugin:1.5.28")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.zegreatrob.tools.tagger")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.zegreatrob.tools.tagger:com.zegreatrob.tools.tagger.gradle.plugin:1.5.28")
      }
    }
    
    apply(plugin = "com.zegreatrob.tools.tagger")
  • Applying plugins to all subprojects .