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