搜索 Gradle 插件

版本 0.1.0(最新版)

0.1.0

创建于 2023 年 3 月 6 日。

管理变更日志的 Gradle 插件。

使用 插件 DSL

plugins {
  id("com.doist.gradle.changelog") version "0.1.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.doist.gradle:changelog:0.1.0")
  }
}

apply(plugin = "com.doist.gradle.changelog")

使用 插件 DSL

plugins {
  id "com.doist.gradle.changelog" version "0.1.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.doist.gradle:changelog:0.1.0"
  }
}

apply plugin: "com.doist.gradle.changelog"

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