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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("be.xvrt.release:be.xvrt.release.gradle.plugin:0.5.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("be.xvrt.release")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("be.xvrt.release:be.xvrt.release.gradle.plugin:0.5.1")
      }
    }
    
    apply(plugin = "be.xvrt.release")
  • Applying plugins to all subprojects .