se.bjurr.gitchangelog.git-changelog-gradle-plugin
所有者: Tomas Bjerre
Git Changelog 的 Gradle 插件
https://github.com/tomasbjerre/git-changelog-gradle-plugin
来源: https://github.com/tomasbjerre/git-changelog-gradle-plugin
使用 插件 DSL
plugins {
id("se.bjurr.gitchangelog.git-changelog-gradle-plugin") version "2.1.2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("se.bjurr.gitchangelog:git-changelog-gradle-plugin:2.1.2")
}
}
apply(plugin = "se.bjurr.gitchangelog.git-changelog-gradle-plugin")
使用 插件 DSL
plugins {
id "se.bjurr.gitchangelog.git-changelog-gradle-plugin" version "2.1.2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "se.bjurr.gitchangelog:git-changelog-gradle-plugin:2.1.2"
}
}
apply plugin: "se.bjurr.gitchangelog.git-changelog-gradle-plugin"