dev.iurysouza.modulegraph
Owner: Iury Souza
A gradle plugin to generate and embbed gradle modules relationship graphs in your README.md file.
https://github.com/iurysza/module-graph
Sources: https://github.com/iurysza/module-graph
Version 0.9.0
0.9.0
Created 06 May 2024.
Generates and embbed a mermaid graph showing the project's modules relationships in your README.md file.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.iurysouza.modulegraph") version "0.9.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.iurysouza:modulegraph:0.9.0") } } apply(plugin = "dev.iurysouza.modulegraph")
- Applying plugins to all subprojects .