搜索Gradle插件

版本 2.0.1(最新版本)

2.0.1

创建于 2024年1月24日。

基于提交消息中找到的勾选ID以及GitHub拉取请求信息生成变更日志

使用插件配置脚本

plugins {
  id("org.shipkit.shipkit-changelog") version "2.0.1"
}

使用旧版插件应用程序

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

apply(plugin = "org.shipkit.shipkit-changelog")

使用插件配置脚本

plugins {
  id "org.shipkit.shipkit-changelog" version "2.0.1"
}

使用旧版插件应用程序

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

apply plugin: "org.shipkit.shipkit-changelog"

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