I want to see the project dependency tree without actually loading these dependencies. I have a project whose collection failed because there is some dependency that is missing in the central repo, however this is not a direct dependency, and I do not know which of my dependencies this refers to.
Now when I run the team mvn dependency:tree, it builds the project and therefore fails.
One way to do this is to keep the dummy jar in a local repo with the same name. It will not try to load the dependency and generate the whole tree. However, is there any other way to do this?
source
share