io.github.kota65535.dependency-report
Owner: Tomohiko Ozawa
Gradle plugin to report project dependencies in JSON format
https://github.com/kota65535/gradle-dependency-report-plugin
Sources: https://github.com/kota65535/gradle-dependency-report-plugin
Version 2.0.1 (latest)
2.0.1
Created 08 July 2023.
Gradle plugin to report project dependencies in JSON format
Using the plugins DSL:
plugins {
id("io.github.kota65535.dependency-report") version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kota65535.gradle.plugin:gradle-dependency-report-plugin:2.0.1")
}
}
apply(plugin = "io.github.kota65535.dependency-report")
Using the plugins DSL:
plugins {
id "io.github.kota65535.dependency-report" version "2.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kota65535.gradle.plugin:gradle-dependency-report-plugin:2.0.1"
}
}
apply plugin: "io.github.kota65535.dependency-report"