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