xyz.errorist.versioneer
Owner: Xavier Barbosa
Infer version from git references
https://lab.errorist.xyz/gradle/versioneer
Sources: https://lab.errorist.xyz/gradle/versioneer
Version 1.1.0-rc.2 (latest)
Created 30 August 2016.
Infer version from git references
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.errorist.versioneer") version "1.1.0-rc.2"
}
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("xyz.errorist.versioneer:xyz.errorist.versioneer.gradle.plugin:1.1.0-rc.2") }
It can then be applied in the precompiled script plugin:plugins { id("xyz.errorist.versioneer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.errorist.versioneer:xyz.errorist.versioneer.gradle.plugin:1.1.0-rc.2") } } apply(plugin = "xyz.errorist.versioneer")
- Applying plugins to all subprojects .