Search Gradle plugins

Version 1.0.0

Created 09 July 2017.

A plugin which sets a semantic version including a branch qualifier to project.version

Using the plugins DSL:

plugins {
  id("tane.mahuta.gradle.semver-branch-plugin") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.tane.mahuta.build:gradle-plugin-version:1.0.0")
  }
}

apply(plugin = "tane.mahuta.gradle.semver-branch-plugin")

Using the plugins DSL:

plugins {
  id "tane.mahuta.gradle.semver-branch-plugin" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.tane.mahuta.build:gradle-plugin-version:1.0.0"
  }
}

apply plugin: "tane.mahuta.gradle.semver-branch-plugin"

Learn how to apply plugins to subprojects