org.hildan.github.changelog
Owner: Joffrey BION
Generates a changelog for your project based on GitHub issues
https://github.com/joffrey-bion/gradle-github-changelog
Sources: https://github.com/joffrey-bion/gradle-github-changelog
Version 2.2.0 (latest)
2.2.0
Created 03 February 2024.
Generates a changelog for your project based on GitHub issues
Using the plugins DSL:
plugins {
id("org.hildan.github.changelog") version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.hildan.gradle:gradle-github-changelog:2.2.0")
}
}
apply(plugin = "org.hildan.github.changelog")
Using the plugins DSL:
plugins {
id "org.hildan.github.changelog" version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.hildan.gradle:gradle-github-changelog:2.2.0"
}
}
apply plugin: "org.hildan.github.changelog"