搜索 Gradle 插件

版本 3.3(最新版)

3.3

创建于 2023 年 1 月 2 日。

Gradle 插件用于生成 github 变更日志。

使用 插件 DSL

plugins {
  id("no.systemfabrikken.githubreleaseplugin") version "3.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:3.3")
  }
}

apply(plugin = "no.systemfabrikken.githubreleaseplugin")

使用 插件 DSL

plugins {
  id "no.systemfabrikken.githubreleaseplugin" version "3.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "no.systemfabrikken.githubreleaseplugin:gradle-githubrelease-plugin:3.3"
  }
}

apply plugin: "no.systemfabrikken.githubreleaseplugin"

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