Owner:
Dorkbox LLC
Plugin to set version information in maven POM, java or kotlin files, and git tags
Version 2.3
Created 08 April 2021.
Gradle Plugin to update version information and git tags within the Gradle project and java/kotlin files
Add this plugin to your build using the plugins DSL:
plugins {
id("com.dorkbox.VersionUpdate") version "2.3"
}
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.dorkbox.VersionUpdate:com.dorkbox.VersionUpdate.gradle.plugin:2.3") }It can then be applied in the precompiled script plugin:plugins { id("com.dorkbox.VersionUpdate") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dorkbox.VersionUpdate:com.dorkbox.VersionUpdate.gradle.plugin:2.3") } } apply(plugin = "com.dorkbox.VersionUpdate") - Applying plugins to all subprojects .