Search Gradle plugins

Version 1.0.0-rc.2

Created 29 June 2021.

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

Using the plugins DSL:

plugins {
  id("net.wooga.github-release-notes") version "1.0.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-GithubReleaseNotes:1.0.0-rc.2")
  }
}

apply(plugin = "net.wooga.github-release-notes")

Using the plugins DSL:

plugins {
  id "net.wooga.github-release-notes" version "1.0.0-rc.2"
}

Using legacy plugin application:

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

apply plugin: "net.wooga.github-release-notes"

Learn how to apply plugins to subprojects