Search Gradle plugins

Version 2.0.0

Created 02 May 2022.

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

Using the plugins DSL:

plugins {
  id("net.wooga.github-release-notes") version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.wooga.gradle:github-release-notes:2.0.0")
  }
}

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

Using the plugins DSL:

plugins {
  id "net.wooga.github-release-notes" version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:github-release-notes:2.0.0"
  }
}

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

Learn how to apply plugins to subprojects