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.1.2-rc.1

Created 12 December 2018.

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

Using the plugins DSL:

plugins {
  id("com.limark.gitflowsemver") version "0.1.2-rc.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.limark.open.gradle.plugins:GitFlowSemVerPlugin:0.1.2-rc.1")
  }
}

apply(plugin = "com.limark.gitflowsemver")

Using the plugins DSL:

plugins {
  id "com.limark.gitflowsemver" version "0.1.2-rc.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.limark.open.gradle.plugins:GitFlowSemVerPlugin:0.1.2-rc.1"
  }
}

apply plugin: "com.limark.gitflowsemver"

Learn how to apply plugins to subprojects