com.benrhine.semantic-versioning-with-build-number-kotlin
Owner: Ben Rhine
Flexible semantic versioning with the ability to include a build number of use for SAFE Agile
Sources: https://github.com/benrhine/semantic-versioning-with-build-number-kotlin
Version 0.0.0-LOCAL
0.0.0-LOCAL
Created 20 March 2023.
Flexible semantic versioning with the ability to include a build number of use for SAFE Agile
Using the plugins DSL:
plugins {
id("com.benrhine.semantic-versioning-with-build-number-kotlin") version "0.0.0-LOCAL"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.benrhine:semantic-versioning-with-build-number-kotlin:0.0.0-LOCAL")
}
}
apply(plugin = "com.benrhine.semantic-versioning-with-build-number-kotlin")
Using the plugins DSL:
plugins {
id "com.benrhine.semantic-versioning-with-build-number-kotlin" version "0.0.0-LOCAL"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.benrhine:semantic-versioning-with-build-number-kotlin:0.0.0-LOCAL"
}
}
apply plugin: "com.benrhine.semantic-versioning-with-build-number-kotlin"