Search Gradle plugins

io.github.kmbisset89.changelog.plugin

This plugin helps create a CHANGELOG file based on conventional commits. It is driven by a JSON formatter that will be improved in future versions.

https://github.com/kmbisset89/change-log-conventonial-commit

Sources: https://github.com/kmbisset89/change-log-conventonial-commit

Version 1.0.4 (latest)

Created 02 February 2023.

This plugin helps create a CHANGELOG file based on conventional commits. It is driven by a JSON formatter that will be improved in future versions.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.kmbisset89.changelog.plugin") version "1.0.4"
}

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("io.github.kmbisset89.changelog.plugin:io.github.kmbisset89.changelog.plugin.gradle.plugin:1.0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.kmbisset89.changelog.plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.kmbisset89.changelog.plugin:io.github.kmbisset89.changelog.plugin.gradle.plugin:1.0.4")
      }
    }
    
    apply(plugin = "io.github.kmbisset89.changelog.plugin")
  • Applying plugins to all subprojects .