io.github.gqrlt1207.versionplugin
Owner: xiong ying gao
This plugin adds some tasks to update the project version.
https://github.com/gqrlt1207/VersionPlugin
Sources: https://github.com/gqrlt1207/VersionPlugin
Version 1.0.0 (latest)
1.0.0
Created 13 June 2022.
This plugin adds some tasks to update the project version.
Using the plugins DSL:
plugins {
id("io.github.gqrlt1207.versionplugin") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gqrlt1207:versionplugin:1.0.0")
}
}
apply(plugin = "io.github.gqrlt1207.versionplugin")
Using the plugins DSL:
plugins {
id "io.github.gqrlt1207.versionplugin" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gqrlt1207:versionplugin:1.0.0"
}
}
apply plugin: "io.github.gqrlt1207.versionplugin"