com.gitlab.stfs.gradle.dependency-graph-plugin
Owner: Stefán Freyr Stefánsson
A Gradle plugin to produce a dependency report in dot format that can be used to generate a visual dependency graph
https://gitlab.com/stfs/gradle-dependency-graph-plugin
Sources: https://gitlab.com/stfs/gradle-dependency-graph-plugin.git
Version 0.4 (latest)
0.4
Created 20 May 2020.
A Gradle plugin to produce a dependency report in dot format that can be used to generate a visual dependency graph
Using the plugins DSL:
plugins {
id("com.gitlab.stfs.gradle.dependency-graph-plugin") version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.gitlab.stfs.gradle.dependencygraph:gradle-dependency-graph-plugin:0.4")
}
}
apply(plugin = "com.gitlab.stfs.gradle.dependency-graph-plugin")
Using the plugins DSL:
plugins {
id "com.gitlab.stfs.gradle.dependency-graph-plugin" version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.gitlab.stfs.gradle.dependencygraph:gradle-dependency-graph-plugin:0.4"
}
}
apply plugin: "com.gitlab.stfs.gradle.dependency-graph-plugin"