Add module graph plugin and expose the graph in the README

This commit is contained in:
Benoit Marty 2022-12-22 12:05:14 +01:00
parent 50b5fda082
commit dd9e2b76f4
5 changed files with 37 additions and 5 deletions

View file

@ -0,0 +1,7 @@
#!/usr/bin/env bash
## Dependency graph https://github.com/savvasdalkitsis/module-dependency-graph
dotPath=`pwd`/docs/images/module_graph.dot
pngPath=`pwd`/docs/images/module_graph.png
./gradlew graphModules -PdotFilePath=${dotPath} -PgraphOutputFilePath=${pngPath} -PautoOpenGraph=false
rm ${dotPath}