hu.simonadamprog.dependency-analyzer
Owner: Ádám Simon
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)
1.2.0
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.
Using the plugins DSL:
plugins {
id("hu.simonadamprog.dependency-analyzer") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("hu.simonadamprog.dependency.analyzer:dependency-analyzer:1.2.0")
}
}
apply(plugin = "hu.simonadamprog.dependency-analyzer")
Using the plugins DSL:
plugins {
id "hu.simonadamprog.dependency-analyzer" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "hu.simonadamprog.dependency.analyzer:dependency-analyzer:1.2.0"
}
}
apply plugin: "hu.simonadamprog.dependency-analyzer"