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.10 (latest)

Created 24 January 2023.

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.10"
}

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("pt.com.hugo-dias.git-versioner:pt.com.hugo-dias.git-versioner.gradle.plugin:1.0.10")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("pt.com.hugo-dias.git-versioner")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("pt.com.hugo-dias.git-versioner:pt.com.hugo-dias.git-versioner.gradle.plugin:1.0.10")
      }
    }
    
    apply(plugin = "pt.com.hugo-dias.git-versioner")
  • Applying plugins to all subprojects .