Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visualize gradle task dependencies

Tags:

gradle

I'm looking for a tool that will graphically display the task dependency graph for a Gradle script, but could not find any. Please mention tools that you worked with that can do it, or explain if this can't be done. Thanks!

like image 950
user-gg Avatar asked Oct 13 '15 17:10

user-gg


1 Answers

The gradle-task-tree plugin can print an ascii tree to the console.

There's also the gradle-visteg plugin which creates a Graphviz file

like image 50
lance-java Avatar answered Nov 09 '22 18:11

lance-java