io.github.gmazzo.publications.report
所有者: Guillermo Mazzola
使用 `publish` 或 `publishToMavenLocal` 发布的软件包的 maven 坐标装饰构建日志
https://github.com/gmazzo/gradle-report-publications-plugin
源代码:https://github.com/gmazzo/gradle-report-publications-plugin
版本 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"