com.savvasdalkitsis.module-dependency-graph
Owner: Savvas Dalkitsis
This plugin adds a new task (graphModules) to your project which will create an image with the graph of your module dependency tree
https://github.com/savvasdalkitsis/
Sources: https://github.com/savvasdalkitsis/
Version 0.12 (latest)
0.12
Created 02 June 2023.
This plugin adds a new task (graphModules) to your project which will create an image with the graph of your module dependency tree
Using the plugins DSL:
plugins {
id("com.savvasdalkitsis.module-dependency-graph") version "0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.savvasdalkitsis:module-dependency-graph:0.12")
}
}
apply(plugin = "com.savvasdalkitsis.module-dependency-graph")
Using the plugins DSL:
plugins {
id "com.savvasdalkitsis.module-dependency-graph" version "0.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.savvasdalkitsis:module-dependency-graph:0.12"
}
}
apply plugin: "com.savvasdalkitsis.module-dependency-graph"