grossdepends
Grossdepends is a term used in software engineering to describe a metric that counts the dependencies of a software artifact, including transitive dependencies and, in some usages, multiplicities along dependency paths. It is used to gauge the raw maintenance burden and exposure to upstream libraries before any deduplication or resolution.
The term is informal and its exact definition varies by project or tooling. It does not correspond
Definition and interpretation: The most common interpretation treats grossdepends as the raw expanded dependency graph with
Example: Consider a project where direct dependencies are B and C; B depends on D; C depends
Usage and tooling: Grossdepends can be computed via build tooling or custom scripts that expand the dependency
See also: Transitive dependency, Dependency graph, Dependency management, Dependency hell.