com.github.rukgar.gradle-conventional-changelog
所有者: David Campos
使用Google Angular团队建立的标准格式,从git提交信息自动生成变更日志文件。
https://github.com/rukgar/gradle-changelog-plugin/
来源: https://github.com/rukgar/gradle-changelog-plugin/
使用 插件DSL
plugins {
id("com.github.rukgar.gradle-conventional-changelog") version "0.3.4"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.rukgar:gradle-conventional-changelog:0.3.4")
}
}
apply(plugin = "com.github.rukgar.gradle-conventional-changelog")
使用 插件DSL
plugins {
id "com.github.rukgar.gradle-conventional-changelog" version "0.3.4"
}
使用 传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.rukgar:gradle-conventional-changelog:0.3.4"
}
}
apply plugin: "com.github.rukgar.gradle-conventional-changelog"