com.github.virtualcitysystems.semver
Owner:
Zhihang Yao
A gradle plugin allowing to automatically bump the patch version for a CI/CD process.
https://github.com/virtualcitySYSTEMS/gradle-plugin-semver/
Version 1.0.1
Created 31 August 2021.
A gradle plugin allowing to automatically bump the patch version for a CI/CD process.
Using the plugins DSL:
plugins {
id("com.github.virtualcitysystems.semver") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.virtualcitysystems:gradle-plugin-semver:1.0.1")
}
}
apply(plugin = "com.github.virtualcitysystems.semver")
Using the plugins DSL:
plugins {
id "com.github.virtualcitysystems.semver" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.virtualcitysystems:gradle-plugin-semver:1.0.1"
}
}
apply plugin: "com.github.virtualcitysystems.semver"