Search Gradle plugins

be.xvrt.release

Automatically set the correct version number before and after a release is made. Takes care of committing and tagging releases as well.

https://github.com/XavierTalpe/gradle-release-plugin

Version 0.3.0

Created 17 November 2014.

No version description available.

Using the plugins DSL:

plugins {
  id("be.xvrt.release") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("be.xvrt:release-plugin:0.3.0")
  }
}

apply(plugin = "be.xvrt.release")

Using the plugins DSL:

plugins {
  id "be.xvrt.release" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "be.xvrt:release-plugin:0.3.0"
  }
}

apply plugin: "be.xvrt.release"

Learn how to apply plugins to subprojects