Is there a way to view the dependency tree using buildr?
Something similar to what maven provides using the command: "mvn dependency:tree".
Is there a way to view the dependency tree using buildr?
Something similar to what maven provides using the command: "mvn dependency:tree".
Copyright © 2021 Jogjafile Inc.
There is no task built in but depending on what you specifically need to do it is relatively easy to whip up some code to do it. We often write a little bit of code that looks like the following to list all transitive dependencies of a specific dependency.
And then run this via
Not eactly what you asked for but hope this helps.