com.sherepenko.gradle.plugin-build-version
Owner: Andrew Sherepenko
This Gradle plugin provides Semantic Versioning 2.0.0 implementation with auto-increment features
https://asherepenko.github.io/plugin-build-version/
Sources: https://github.com/asherepenko/plugin-build-version
Version 0.3.0 (latest)
0.3.0
Created 01 October 2021.
Gradle plugin that provides Semantic Versioning 2.0 implementation with auto-increment features
Using the plugins DSL:
plugins {
id("com.sherepenko.gradle.plugin-build-version") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.sherepenko.gradle:plugin-build-version:0.3.0")
}
}
apply(plugin = "com.sherepenko.gradle.plugin-build-version")
Using the plugins DSL:
plugins {
id "com.sherepenko.gradle.plugin-build-version" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.sherepenko.gradle:plugin-build-version:0.3.0"
}
}
apply plugin: "com.sherepenko.gradle.plugin-build-version"