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.5 (latest)

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.

Add this plugin to your build using the plugins DSL:

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

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("ch.addere.dga.connectorplugin:ch.addere.dga.connectorplugin.gradle.plugin:0.1.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ch.addere.dga.connectorplugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ch.addere.dga.connectorplugin:ch.addere.dga.connectorplugin.gradle.plugin:0.1.5")
      }
    }
    
    apply(plugin = "ch.addere.dga.connectorplugin")
  • Applying plugins to all subprojects .