Search Gradle plugins

Version 0.5.1

Created 28 January 2019.

Generates a changelog for your project based on GitHub issues

Using the plugins DSL:

plugins {
  id("org.hildan.github.changelog") version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.hildan.gradle:gradle-github-changelog:0.5.1")
  }
}

apply(plugin = "org.hildan.github.changelog")

Using the plugins DSL:

plugins {
  id "org.hildan.github.changelog" version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.hildan.gradle:gradle-github-changelog:0.5.1"
  }
}

apply plugin: "org.hildan.github.changelog"

Learn how to apply plugins to subprojects