Search Gradle plugins

Version 1.4.0

Created 07 October 2021.

Gradle plugin to generate GitHub Release Notes

Using the plugins DSL:

plugins {
  id("io.github.simonscholz.github.release.notes.plugin") version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.simonscholz.github.release.notes:io.github.simonscholz.github.release.notes.plugin:1.4.0")
  }
}

apply(plugin = "io.github.simonscholz.github.release.notes.plugin")

Using the plugins DSL:

plugins {
  id "io.github.simonscholz.github.release.notes.plugin" version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.simonscholz.github.release.notes:io.github.simonscholz.github.release.notes.plugin:1.4.0"
  }
}

apply plugin: "io.github.simonscholz.github.release.notes.plugin"

Learn how to apply plugins to subprojects