io.github.kota65535.dependency-report
所有者: 大庭雄彦
Gradle插件,用于以JSON格式报告项目依赖关系
https://github.com/kota65535/gradle-dependency-report-plugin
来源:https://github.com/kota65535/gradle-dependency-report-plugin
使用插件DSL
plugins {
id("io.github.kota65535.dependency-report") version "2.0.1"
}
使用传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.kota65535.gradle.plugin:gradle-dependency-report-plugin:2.0.1")
}
}
apply(plugin = "io.github.kota65535.dependency-report")
使用插件DSL
plugins {
id "io.github.kota65535.dependency-report" version "2.0.1"
}
使用传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.kota65535.gradle.plugin:gradle-dependency-report-plugin:2.0.1"
}
}
apply plugin: "io.github.kota65535.dependency-report"