net.wooga.github-release-notes
Owner: Manne Endres
This plugin provides tasks and conventions to send github-release-notes messages
https://wooga.github.io/atlas-github-release-notes/
Sources: https://github.com/wooga/atlas-github-release-notes
Version 3.0.0 (latest)
3.0.0
Created 26 June 2023.
This plugin provides tasks and conventions to send github-release-notes messages
Using the plugins DSL:
plugins {
id("net.wooga.github-release-notes") version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:github-release-notes:3.0.0")
}
}
apply(plugin = "net.wooga.github-release-notes")
Using the plugins DSL:
plugins {
id "net.wooga.github-release-notes" version "3.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:github-release-notes:3.0.0"
}
}
apply plugin: "net.wooga.github-release-notes"