Search Gradle plugins

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.4

0.1.4

Created 13 September 2024.

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.

Using the plugins DSL:

plugins {
  id("ch.addere.dga.connectorplugin") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.addere.dga.connectorplugin:connector-plugin:0.1.4")
  }
}

apply(plugin = "ch.addere.dga.connectorplugin")

Using the plugins DSL:

plugins {
  id "ch.addere.dga.connectorplugin" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.addere.dga.connectorplugin:connector-plugin:0.1.4"
  }
}

apply plugin: "ch.addere.dga.connectorplugin"

Learn how to apply plugins to subprojects