Created
July 24, 2015 14:06
-
-
Save abesto/cdcdd38263eacf1cbb51 to your computer and use it in GitHub Desktop.
Gradle: multi-project dependency graph
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task dependencyReport { | |
doLast { | |
def file = new File("project-dependencies.dot") | |
file.delete() | |
file << "digraph {\n" | |
file << "splines=ortho\n" | |
rootProject.childProjects.each { item -> | |
def from = item.value | |
from.configurations.compile.dependencies | |
.matching { it in ProjectDependency } | |
.each { to -> file << ("\"${from.name}\" -> \"${to.name}\"\n")} | |
} | |
file << "}\n" | |
} | |
} |
FWIW - a modified version that supports deeply-nested projects: https://gist.github.com/tzachz/419478fc8b009e953f5e5dc39f3f3a2a
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍 thanks, that was helpful!