Owner:
Ricardo Costeira
Visualizes and analyzes your Gradle multi-module dependency architecture
https://github.com/rcosteira79/Simple-Dependency-Analyzer
Sources: https://github.com/rcosteira79/Simple-Dependency-Analyzer
Version 1.2.0 (latest)
Created 31 March 2026.
Visualizes and analyzes your Gradle multi-module dependency architecture
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.rcosteira79.simple-dependency-analyzer") version "1.2.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("io.github.rcosteira79.simple-dependency-analyzer:io.github.rcosteira79.simple-dependency-analyzer.gradle.plugin:1.2.0") }It can then be applied in the precompiled script plugin:plugins { id("io.github.rcosteira79.simple-dependency-analyzer") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.rcosteira79.simple-dependency-analyzer:io.github.rcosteira79.simple-dependency-analyzer.gradle.plugin:1.2.0") } } apply(plugin = "io.github.rcosteira79.simple-dependency-analyzer") - Applying plugins to all subprojects .