Search Gradle plugins

pt.com.hugo-dias.git-versioner

This plugin will help you by creating a new version for each git commit based in the commit description

https://github.com/AnakinPt/git-versioner

Sources: https://github.com/AnakinPt/git-versioner

Version 1.0.1

1.0.1

Created 29 September 2022.

This plugin will help you by creating a new version for each git commit based in the commit description

Add this plugin to your build using the plugins DSL:

plugins {
  id("pt.com.hugo-dias.git-versioner") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("pt.com.hugo-dias.gradle.gitversioner:git-versioner:1.0.1")
      }
    }
    
    apply(plugin = "pt.com.hugo-dias.git-versioner")
  • Applying plugins to all subprojects .