io.github.rethab.semantic-release
Owner: Ody Fusectore
Semantic Releases based on Conventional Commits for Gradle
https://github.com/rethab/semantic-gradle
Sources: https://github.com/rethab/semantic-gradle
Version 0.0.1 (latest)
0.0.1
Created 10 October 2023.
Semantic Releases based on Conventional Commits for Gradle
Using the plugins DSL:
plugins {
id("io.github.rethab.semantic-release") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rethab:semantic-gradle:0.0.1")
}
}
apply(plugin = "io.github.rethab.semantic-release")
Using the plugins DSL:
plugins {
id "io.github.rethab.semantic-release" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rethab:semantic-gradle:0.0.1"
}
}
apply plugin: "io.github.rethab.semantic-release"