Search Gradle plugins

hu.simonadamprog.dependency-analyzer

Analyzing dependencies in a multi-project codebase. Finding root library (direct library dependency / first-level library dependency) for a transitive dependency and their depending projects that directly use them. Displaying unique dependency list. Finding all circular dependency chains.

https://simonadamprog.hu/dependency-analyzer/

Sources: https://github.com/simonadamprog/dependency-analyzer

Version 1.2.0 (latest)

Created 03 March 2024.

Analyzing dependencies in a multi-project codebase. Finding root library (direct library dependency / first-level library dependency) for a transitive dependency and their depending projects that directly use them. Displaying unique dependency list. Finding all circular dependency chains.

Add this plugin to your build using the plugins DSL:

plugins {
  id("hu.simonadamprog.dependency-analyzer") version "1.2.0"
}

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