Search Gradle plugins

com.limark.gitflowsemver

An opionionated GitFlow SemVer 2.0 versioning plugin that resolves project vesion based on Git Tags and conventions.

https://github.com/OpenLimark/GitFlowSemVerPlugin

Sources: https://github.com/OpenLimark/GitFlowSemVerPlugin

Version 0.3.1 (latest)

Created 10 October 2019.

An opionionated GitFlow SemVer 2.0 versioning plugin that resolves project vesion based on Git Tags and conventions.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.limark.gitflowsemver") version "0.3.1"
}

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