org.hildan.github.changelog
所有者: Joffrey BION
基于GitHub问题生成您项目的变更日志
https://github.com/joffrey-bion/gradle-github-changelog
来源: https://github.com/joffrey-bion/gradle-github-changelog
使用 plugins DSL
plugins {
id("org.hildan.github.changelog") version "2.2.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.hildan.gradle:gradle-github-changelog:2.2.0")
}
}
apply(plugin = "org.hildan.github.changelog")
使用 plugins DSL
plugins {
id "org.hildan.github.changelog" version "2.2.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.hildan.gradle:gradle-github-changelog:2.2.0"
}
}
apply plugin: "org.hildan.github.changelog"