Search Gradle plugins

eu.davidea.grabver

An easy Gradle plugin that follows semver.org rules to automatically generate the Patch version, Build number and Code version, while Major, Minor and Pre-Release suffix remain under our control.

https://github.com/davideas/GrabVer

Sources: https://github.com/davideas/GrabVer

Version 0.6.0

0.6.0

Created 04 October 2017.

An easy Gradle plugin that follows semver.org rules to automatically generate the Patch version, Build number and Code version, while Major, Minor and Pre-Release suffix remain under our control.

Add this plugin to your build using the plugins DSL:

plugins {
  id("eu.davidea.grabver") version "0.6.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("eu.davidea:grabver:0.6.0")
      }
    }
    
    apply(plugin = "eu.davidea.grabver")
  • Applying plugins to all subprojects .