io.github.simonscholz.github.release.notes.plugin
所有者: Simon Scholz
Gradle 插件 - 用于生成 GitHub 发行说明
https://github.com/SimonScholz/github-release-notes
来源: https://github.com/SimonScholz/github-release-notes
使用 插件 DSL
plugins {
id("io.github.simonscholz.github.release.notes.plugin") version "1.6.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.simonscholz.github.release.notes:io.github.simonscholz.github.release.notes.plugin:1.6.0")
}
}
apply(plugin = "io.github.simonscholz.github.release.notes.plugin")
使用 插件 DSL
plugins {
id "io.github.simonscholz.github.release.notes.plugin" version "1.6.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.simonscholz.github.release.notes:io.github.simonscholz.github.release.notes.plugin:1.6.0"
}
}
apply plugin: "io.github.simonscholz.github.release.notes.plugin"