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.5.1 (latest)

Created 10 March 2015.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "be.xvrt.release"

Learn how to apply plugins to subprojects