io.github.jobernas.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/jobernas/gradle-changelog-plugin
Sources: https://github.com/jobernas/gradle-changelog-plugin
Version 0.3.4 (latest)
0.3.4
Created 30 March 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("io.github.jobernas.gradle-conventional-changelog") version "0.3.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jobernas:gradle-conventional-changelog:0.3.4")
}
}
apply(plugin = "io.github.jobernas.gradle-conventional-changelog")
Using the plugins DSL:
plugins {
id "io.github.jobernas.gradle-conventional-changelog" version "0.3.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jobernas:gradle-conventional-changelog:0.3.4"
}
}
apply plugin: "io.github.jobernas.gradle-conventional-changelog"