Search Gradle plugins

Version 1.1.3 (latest)

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"

Learn how to apply plugins to subprojects