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.5 (latest)
Created 14 October 2023.
A plugin to automatically produce Github/mermaid compatible dependency graphs
Using the plugins DSL:
plugins {
id("io.github.adityabhaskar.dependencygraph") version "0.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.adityabhaskar:plugin:0.1.5")
}
}
apply(plugin = "io.github.adityabhaskar.dependencygraph")
Using the plugins DSL:
plugins {
id "io.github.adityabhaskar.dependencygraph" version "0.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.adityabhaskar:plugin:0.1.5"
}
}
apply plugin: "io.github.adityabhaskar.dependencygraph"