com.dorkbox.VersionUpdate
Owner: Dorkbox LLC
Plugin to set version information in maven POM, java or kotlin files, and git tags
https://git.dorkbox.com/dorkbox/VersionUpdate
Sources: https://git.dorkbox.com/dorkbox/VersionUpdate
Version 2.7
2.7
Created 10 February 2023.
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.7"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dorkbox:VersionUpdate:2.7") } } apply(plugin = "com.dorkbox.VersionUpdate")
- Applying plugins to all subprojects .