net.gradleutil.gradle-version
Owner: gradleutil-code
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.4 (latest)
Created 23 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.4"
}
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.4") }
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.4") } } apply(plugin = "net.gradleutil.gradle-version")
- Applying plugins to all subprojects .