io.datalbry.plugin.semver.github
Owner: Timo Gruen
Simple plugin to update the gradle version property using the git history and create GitHub releases
Sources: https://github.com/datalbry/gradle-semver-plugin
Version 0.4.2 (latest)
0.4.2
Created 16 March 2022.
Simple plugin to update the gradle version property using the git history and create GitHub releases
Using the plugins DSL:
plugins {
id("io.datalbry.plugin.semver.github") version "0.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.datalbry.gradle:gradle.semver-github:0.4.2")
}
}
apply(plugin = "io.datalbry.plugin.semver.github")
Using the plugins DSL:
plugins {
id "io.datalbry.plugin.semver.github" version "0.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.datalbry.gradle:gradle.semver-github:0.4.2"
}
}
apply plugin: "io.datalbry.plugin.semver.github"