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.10.1 (latest)
Created 31 August 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.10.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("dev.iurysouza.modulegraph:dev.iurysouza.modulegraph.gradle.plugin:0.10.1") }
It can then be applied in the precompiled script plugin:plugins { id("dev.iurysouza.modulegraph") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.iurysouza.modulegraph:dev.iurysouza.modulegraph.gradle.plugin:0.10.1") } } apply(plugin = "dev.iurysouza.modulegraph")
- Applying plugins to all subprojects .