com.github.rukgar.gradle-conventional-changelog
Owner: David Campos
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)
0.3.4
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"