de.gliderpilot.semantic-release
Owner: Tobias Schulte
At its core semantic-release is a set of conventions that gives you entirely automated, semver-compliant package publishing.
https://github.com/tschulte/gradle-semantic-release-plugin
Sources: https://github.com/tschulte/gradle-semantic-release-plugin
Version 1.4.2 (latest)
1.4.2
Created 18 May 2021.
At its core semantic-release is a set of conventions that gives you entirely automated, semver-compliant package publishing.
Using the plugins DSL:
plugins {
id("de.gliderpilot.semantic-release") version "1.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.gliderpilot.gradle.semantic-release:gradle-semantic-release-plugin:1.4.2")
}
}
apply(plugin = "de.gliderpilot.semantic-release")
Using the plugins DSL:
plugins {
id "de.gliderpilot.semantic-release" version "1.4.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.gliderpilot.gradle.semantic-release:gradle-semantic-release-plugin:1.4.2"
}
}
apply plugin: "de.gliderpilot.semantic-release"