io.github.ysohda.gradle-git-changelog
Owner: Yukihiko Sohda
Gradle plugin for generating a changelog based on a Git commit history.
https://github.com/ysohda/gradle-git-changelog
Sources: https://github.com/ysohda/gradle-git-changelog.git
Version 0.4.0 (latest)
0.4.0
Created 18 May 2023.
Gradle plugin for generating a changelog based on a Git commit history.
Using the plugins DSL:
plugins {
id("io.github.ysohda.gradle-git-changelog") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ysohda:gradle-git-changelog:0.4.0")
}
}
apply(plugin = "io.github.ysohda.gradle-git-changelog")
Using the plugins DSL:
plugins {
id "io.github.ysohda.gradle-git-changelog" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ysohda:gradle-git-changelog:0.4.0"
}
}
apply plugin: "io.github.ysohda.gradle-git-changelog"