Search Gradle plugins

com.geoffgranum.gradle-conventional-changelog

Use the format established by Google's AngularJS team to automatically generate a changelog file from git commit messages.

https://github.com/ggranum/gradle-changelog-plugin/

Sources: https://github.com/ggranum/gradle-changelog-plugin/

Version 0.3.1 (latest)

Created 14 September 2020.

Use the format established by Google's AngularJS team to automatically generate a changelog file from git commit messages.

Using the plugins DSL:

plugins {
  id("com.geoffgranum.gradle-conventional-changelog") version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.geoffgranum:gradle-conventional-changelog:0.3.1")
  }
}

apply(plugin = "com.geoffgranum.gradle-conventional-changelog")

Using the plugins DSL:

plugins {
  id "com.geoffgranum.gradle-conventional-changelog" version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.geoffgranum:gradle-conventional-changelog:0.3.1"
  }
}

apply plugin: "com.geoffgranum.gradle-conventional-changelog"

Learn how to apply plugins to subprojects