Search Gradle plugins

org.shipkit.shipkit-changelog

Generates changelog based on ticked IDs found in commit messages and GitHub pull request information

https://github.com/shipkit/shipkit-changelog

Sources: https://github.com/shipkit/org.shipkit.shipkit-changelog.git

Version 0.2.21

Created 05 January 2021.

Generates changelog based on ticked IDs found in commit messages and Github pull request information

Using the plugins DSL:

plugins {
  id("org.shipkit.shipkit-changelog") version "0.2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.shipkit:shipkit-changelog:0.2.21")
  }
}

apply(plugin = "org.shipkit.shipkit-changelog")

Using the plugins DSL:

plugins {
  id "org.shipkit.shipkit-changelog" version "0.2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.shipkit:shipkit-changelog:0.2.21"
  }
}

apply plugin: "org.shipkit.shipkit-changelog"

Learn how to apply plugins to subprojects