Search Gradle plugins

Version 0.1.0-rc.2

Created 30 January 2018.

This plugin generates release notes on project data provided by git/github

Using the plugins DSL:

plugins {
  id("net.wooga.releaseNotesGenerator") version "0.1.0-rc.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.wooga.gradle:atlas-releaseNotesGenerator:0.1.0-rc.2")
  }
}

apply(plugin = "net.wooga.releaseNotesGenerator")

Using the plugins DSL:

plugins {
  id "net.wooga.releaseNotesGenerator" version "0.1.0-rc.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.wooga.gradle:atlas-releaseNotesGenerator:0.1.0-rc.2"
  }
}

apply plugin: "net.wooga.releaseNotesGenerator"

Learn how to apply plugins to subprojects