fr.brouillard.oss.gradle.jgitver
Owner: Matthieu Brouillard
gradle plugin that defines automatically project version using jgitver
https://github.com/jgitver/gradle-jgitver-plugin
Sources: https://github.com/jgitver/gradle-jgitver-plugin
Version 0.10.0-rc03 (latest)
Created 23 July 2020.
gradle plugin that defines automatically project version using jgitver
Add this plugin to your build using the plugins DSL:
plugins {
id("fr.brouillard.oss.gradle.jgitver") version "0.10.0-rc03"
}
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("fr.brouillard.oss.gradle.jgitver:fr.brouillard.oss.gradle.jgitver.gradle.plugin:0.10.0-rc03") }
It can then be applied in the precompiled script plugin:plugins { id("fr.brouillard.oss.gradle.jgitver") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fr.brouillard.oss.gradle.jgitver:fr.brouillard.oss.gradle.jgitver.gradle.plugin:0.10.0-rc03") } } apply(plugin = "fr.brouillard.oss.gradle.jgitver")
- Applying plugins to all subprojects .