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.0

Created 14 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.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.limark.open.gradle.plugins:GitFlowSemVerPlugin_master-DN45V32KAWY35YWHBM6YBD4WMA75OG7PW5MA6I4YYVYRQL2OTD5Q:0.3.0")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.limark.gitflowsemver" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.limark.open.gradle.plugins:GitFlowSemVerPlugin_master-DN45V32KAWY35YWHBM6YBD4WMA75OG7PW5MA6I4YYVYRQL2OTD5Q:0.3.0"
  }
}

apply plugin: "com.limark.gitflowsemver"

Learn how to apply plugins to subprojects