Search Gradle plugins

Simple semver version bumper based on branch matching and git dirty or not

https://github.com/gradleutil/gradle-version

Sources: https://github.com/gradleutil/gradle-version

Version 0.0.3

Created 21 August 2022.

Simple semver version bumper based on branch matching and git dirty or not

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.gradleutil.gradle-version") version "0.0.3"
}

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("net.gradleutil.gradle-version:net.gradleutil.gradle-version.gradle.plugin:0.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("net.gradleutil.gradle-version")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.gradleutil.gradle-version:net.gradleutil.gradle-version.gradle.plugin:0.0.3")
      }
    }
    
    apply(plugin = "net.gradleutil.gradle-version")
  • Applying plugins to all subprojects .