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.8 (latest)
2.8
Created 07 June 2023.
Gradle Plugin to update version information and git tags within the Gradle project and java/kotlin files
Using the plugins DSL:
plugins {
id("com.dorkbox.VersionUpdate") version "2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dorkbox:VersionUpdate:2.8")
}
}
apply(plugin = "com.dorkbox.VersionUpdate")
Using the plugins DSL:
plugins {
id "com.dorkbox.VersionUpdate" version "2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dorkbox:VersionUpdate:2.8"
}
}
apply plugin: "com.dorkbox.VersionUpdate"