搜索 Gradle 插件

版本 0.7.0(最新版)

0.7.0

创建于 2024 年 3 月 16 日。

此插件将功能更新添加到 CHANGELOG 文件顶部

使用 插件 DSL

plugins {
  id("io.github.dryrum.update-changelog") version "0.7.0"
}

使用 旧插件应用

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

apply(plugin = "io.github.dryrum.update-changelog")

使用 插件 DSL

plugins {
  id "io.github.dryrum.update-changelog" version "0.7.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.dryrum:update-changelog:0.7.0"
  }
}

apply plugin: "io.github.dryrum.update-changelog"

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