搜索 Gradle 插件

版本 1.6.0 (最新)

1.6.0

创建于 2022 年 7 月 5 日。

Gradle 插件 - 用于生成 GitHub 发行说明

使用 插件 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"

了解如何将插件应用到子项目中