ch.addere.dga.connectorplugin
Owner: Pascal K
The Dependency Graph Analyser (DGA) Connector Plugin is designed for use with Gradle multi-project builds. It collects module dependency data from all Gradle projects within the build and exports this information in a format compatible with the DGA CLI tool for further analysis and visualisation. The plugin is typically applied using a Gradle init script, making it easy to integrate into existing builds without modifying individual project configurations.
https://github.com/ryru/dependency-graph-analyser
Sources: https://github.com/ryru/dependency-graph-analyser.git
Version 0.1.3
0.1.3
Created 11 September 2024.
Using the plugins DSL:
plugins {
id("ch.addere.dga.connectorplugin") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.addere.dga.connectorplugin:connector-plugin:0.1.3")
}
}
apply(plugin = "ch.addere.dga.connectorplugin")
Using the plugins DSL:
plugins {
id "ch.addere.dga.connectorplugin" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.addere.dga.connectorplugin:connector-plugin:0.1.3"
}
}
apply plugin: "ch.addere.dga.connectorplugin"