SBT:有没有办法打印解析器列表?

SBT: is there a way to print the list of resolvers?

我有一个包含很多插件的大项目。我认为一些解析器是由一些插件添加的。有没有办法查看解析器列表中的内容? (以及如何排序?)

>sbt
>show fullResolvers //list all *resolvers* in project,
>show resolvers //list added *resolvers*

你也可以用inspect代替show,比如:inspect resolvers.

订单在 ArrayBuffer 中。如果你想改变顺序,也许这篇文章对你有帮助:

http://www.scala-sbt.org/0.13.5/docs/Detailed-Topics/Library-Management.html

确保您还检查了 sbt 使用的 默认 解析器。

它们可以在 sbt.boot.properties 文件中找到,请在此处查看详细信息: