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.6
Created 25 January 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.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dorkbox:VersionUpdate:2.6")
}
}
apply(plugin = "com.dorkbox.VersionUpdate")
Using the plugins DSL:
plugins {
id "com.dorkbox.VersionUpdate" version "2.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dorkbox:VersionUpdate:2.6"
}
}
apply plugin: "com.dorkbox.VersionUpdate"