Search Gradle plugins

Version 5.1.5

5.1.5

Created 06 February 2022.

This extension will adjust the project version, based on current git branch or tag.

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.qoomon.git-versioning") version "5.1.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("me.qoomon:gradle-git-versioning-plugin:5.1.5")
      }
    }
    
    apply(plugin = "me.qoomon.git-versioning")
  • Applying plugins to all subprojects .