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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.geoffgranum.gradle-conventional-changelog:com.geoffgranum.gradle-conventional-changelog.gradle.plugin:0.3.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.geoffgranum.gradle-conventional-changelog")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.geoffgranum.gradle-conventional-changelog:com.geoffgranum.gradle-conventional-changelog.gradle.plugin:0.3.1")
      }
    }
    
    apply(plugin = "com.geoffgranum.gradle-conventional-changelog")
  • Applying plugins to all subprojects .