Add module graph plugin and expose the graph in the README
This commit is contained in:
parent
50b5fda082
commit
dd9e2b76f4
5 changed files with 37 additions and 5 deletions
7
tools/docs/generateModuleGraph.sh
Executable file
7
tools/docs/generateModuleGraph.sh
Executable 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}
|
||||
Loading…
Add table
Add a link
Reference in a new issue