SBT: is there a way to print the list of resolvers?
>sbt
>show fullResolvers //list all *resolvers* in project,
>show resolvers //list added *resolvers*
and you also can use inspect
to replace show
, like: inspect resolvers
.
The order is in a ArrayBuffer
. if you want to change the order, maybe this article is helpful:
http://www.scala-sbt.org/0.13.5/docs/Detailed-Topics/Library-Management.html