io.github.adityabhaskar.dependencygraph
Owner: Aditya
A plugin to automatically produce Github/mermaid compatible dependency graphs
https://github.com/adityabhaskar/Gradle-dependency-graphs
Sources: https://github.com/adityabhaskar/Gradle-dependency-graphs
Version 0.1.6 (latest)
Created 16 March 2024.
A plugin to automatically produce Github/mermaid compatible dependency graphs
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.adityabhaskar.dependencygraph") version "0.1.6"
}
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("io.github.adityabhaskar.dependencygraph:io.github.adityabhaskar.dependencygraph.gradle.plugin:0.1.6") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.adityabhaskar.dependencygraph") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.adityabhaskar.dependencygraph:io.github.adityabhaskar.dependencygraph.gradle.plugin:0.1.6") } } apply(plugin = "io.github.adityabhaskar.dependencygraph")
- Applying plugins to all subprojects .