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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.zegreatrob.tools:tagger-plugin:1.0.97")
  }
}

apply(plugin = "com.zegreatrob.tools.tagger")

Using the plugins DSL:

plugins {
  id "com.zegreatrob.tools.tagger" version "1.0.97"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.zegreatrob.tools:tagger-plugin:1.0.97"
  }
}

apply plugin: "com.zegreatrob.tools.tagger"

Learn how to apply plugins to subprojects