搜索 Gradle 插件

版本 1.2.8 (最新版)

1.2.8

创建于 2024 年 4 月 2 日。

使用 `publish` 或 `publishToMavenLocal` 发布的软件包的 maven 坐标装饰构建日志

使用 插件 DSL

plugins {
  id("io.github.gmazzo.publications.report") version "1.2.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.gmazzo.publications.report:plugin:1.2.8")
  }
}

apply(plugin = "io.github.gmazzo.publications.report")

使用 插件 DSL

plugins {
  id "io.github.gmazzo.publications.report" version "1.2.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.gmazzo.publications.report:plugin:1.2.8"
  }
}

apply plugin: "io.github.gmazzo.publications.report"

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