Search Gradle plugins

Version 4.1.0

4.1.0

Created 27 February 2021.

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 "4.1.0"
}

See also:

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