SBT依赖树

Nir*_*cov 5 scala sbt

我试图看到整个SBT树,但是当我运行sbt dependency-tree时,我没有收到任何结果(经过一分钟左右的处理).

怎么解决这个问题?

谢谢你

Soh*_*dev 5

You can use this plugin to show a nice dependency tree/graph of your build dependencies. In your plugins.sbt file, add the following line:

addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.2")
Run Code Online (Sandbox Code Playgroud)

Then after that, do sbt clean compile for the plugin to take effect. Then in your terminal, execute sbt dependencyTree or any other command specified in this link.

Hope that helps!