io.github.gmazzo.publications.report
Owner: Guillermo Mazzola
Decorates the build logs with maven coordinates of artifacts published with `publish` or `publishToMavenLocal`
https://github.com/gmazzo/gradle-report-publications-plugin
Sources: https://github.com/gmazzo/gradle-report-publications-plugin
Version 1.2.8 (latest)
1.2.8
Created 02 April 2024.
Decorates the build logs with maven coordinates of artifacts published with `publish` or `publishToMavenLocal`
Using the plugins DSL:
plugins {
id("io.github.gmazzo.publications.report") version "1.2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gmazzo.publications.report:plugin:1.2.8")
}
}
apply(plugin = "io.github.gmazzo.publications.report")
Using the plugins DSL:
plugins {
id "io.github.gmazzo.publications.report" version "1.2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gmazzo.publications.report:plugin:1.2.8"
}
}
apply plugin: "io.github.gmazzo.publications.report"