Search Gradle plugins

Version 0.1.0-rc.1

0.1.0-rc.1

Created 16 September 2019.

This plugin provides tasks and conventions to send github-release-notes messages

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.wooga.github-release-notes") version "0.1.0-rc.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.net.wooga.gradle:atlas-GithubReleaseNotes:0.1.0-rc.1")
      }
    }
    
    apply(plugin = "net.wooga.github-release-notes")
  • Applying plugins to all subprojects .