org.ai2fit.gradle.versioning-plugin
Owner: AI2FIT
A plugin that helps to maintain a semantic versioning of the build artifacts based on the project's git repository. It uses the current branch and the latest tag to enforce naming conventions
https://gitlab.com/ai2fit/gradle-plugins/versioning
Sources: https://gitlab.com/ai2fit/gradle-plugins/versioning.git
Version 2.0.0
2.0.0
Created 22 January 2024.
A plugin that helps to maintain a semantic versioning of the build artifacts based on the project's git repository.
It uses the current branch and the latest tag to enforce naming conventions
Add this plugin to your build using the plugins DSL:
plugins {
id("org.ai2fit.gradle.versioning-plugin") version "2.0.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.ai2fit.gradle:versioning-plugin:2.0.0") } } apply(plugin = "org.ai2fit.gradle.versioning-plugin")
- Applying plugins to all subprojects .