io.github.nefilim.gradle.semver-plugin
Owner:
Peter van Rensburg
Modified Git Flow based semver plugin
https://github.com/nefilim/gradle-semver-plugin
Using the plugins DSL:
plugins {
id("io.github.nefilim.gradle.semver-plugin") version "0.3.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.nefilim.gradle:semver-plugin:0.3.13")
}
}
apply(plugin = "io.github.nefilim.gradle.semver-plugin")
Using the plugins DSL:
plugins {
id "io.github.nefilim.gradle.semver-plugin" version "0.3.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.nefilim.gradle:semver-plugin:0.3.13"
}
}
apply plugin: "io.github.nefilim.gradle.semver-plugin"