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.

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "io.github.kmbisset89.changelog.plugin")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.kmbisset89.changelog:plugin:1.0.4"
  }
}

apply plugin: "io.github.kmbisset89.changelog.plugin"

Learn how to apply plugins to subprojects