io.github.jobernas.gradle-conventional-changelog
使用 Google Angular 团队建立的标准格式,从 git 提交信息中自动生成变更日志文件。
https://github.com/jobernas/gradle-changelog-plugin
来源:https://github.com/jobernas/gradle-changelog-plugin
版本 0.3.4 (最新)
0.3.4
创建于 2023 年 3 月 30 日。
使用 Google Angular 团队建立的标准格式,从 git 提交信息中自动生成变更日志文件。
使用插件 DSL
plugins {
id("io.github.jobernas.gradle-conventional-changelog") version "0.3.4"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.jobernas:gradle-conventional-changelog:0.3.4")
}
}
apply(plugin = "io.github.jobernas.gradle-conventional-changelog")
使用插件 DSL
plugins {
id "io.github.jobernas.gradle-conventional-changelog" version "0.3.4"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.jobernas:gradle-conventional-changelog:0.3.4"
}
}
apply plugin: "io.github.jobernas.gradle-conventional-changelog"