Search Gradle plugins

com.github.rukgar.gradle-conventional-changelog

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

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

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

Version 0.3.4 (latest)

Created 18 September 2023.

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

Using the plugins DSL:

plugins {
  id("com.github.rukgar.gradle-conventional-changelog") version "0.3.4"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.rukgar.gradle-conventional-changelog" version "0.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.rukgar:gradle-conventional-changelog:0.3.4"
  }
}

apply plugin: "com.github.rukgar.gradle-conventional-changelog"

Learn how to apply plugins to subprojects