搜索Gradle插件

版本 2.2.0 (最新)

2.2.0

创建时间 2024年2月3日。

基于GitHub问题生成您项目的变更日志

使用 plugins DSL

plugins {
  id("org.hildan.github.changelog") version "2.2.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.hildan.gradle:gradle-github-changelog:2.2.0")
  }
}

apply(plugin = "org.hildan.github.changelog")

使用 plugins DSL

plugins {
  id "org.hildan.github.changelog" version "2.2.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.hildan.gradle:gradle-github-changelog:2.2.0"
  }
}

apply plugin: "org.hildan.github.changelog"

学习如何将插件应用于子项目