com.gitlab.grrfe.version-helper
Owner: grrfe
Reads version from git tag, adds handler to read version in binary
Sources: https://gitlab.com/grrfe/version-helper
Version 2.1.23 (latest)
Created 09 September 2022.
Reads version from git tag, adds handler to read version in binary
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gitlab.grrfe.version-helper") version "2.1.23"
}
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("com.gitlab.grrfe.version-helper:com.gitlab.grrfe.version-helper.gradle.plugin:2.1.23") }
It can then be applied in the precompiled script plugin:plugins { id("com.gitlab.grrfe.version-helper") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gitlab.grrfe.version-helper:com.gitlab.grrfe.version-helper.gradle.plugin:2.1.23") } } apply(plugin = "com.gitlab.grrfe.version-helper")
- Applying plugins to all subprojects .