net.wooga.releaseNotesGenerator
Owner: Manne Endres
This plugin generates release notes on project data provided by git/github
https://wooga.github.io/atlas-releaseNotesGenerator
Sources: https://github.com/wooga/atlas-releaseNotesGenerator
Version 1.1.3 (latest)
1.1.3
Created 19 June 2019.
This plugin generates release notes on project data provided by git/github
Using the plugins DSL:
plugins {
id("net.wooga.releaseNotesGenerator") version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-releaseNotesGenerator:1.1.3")
}
}
apply(plugin = "net.wooga.releaseNotesGenerator")
Using the plugins DSL:
plugins {
id "net.wooga.releaseNotesGenerator" version "1.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-releaseNotesGenerator:1.1.3"
}
}
apply plugin: "net.wooga.releaseNotesGenerator"