I have my custom SBT plugin and I use it in my project. In case of any change of the plugin I make publish-local
and then I build my project and sbt writes in console Resolving <my-plugin-name>;0.2-SNAPSHOT ...
. This resolution takes long time(about minute).
Why it takes so much time to resolve a custom sbt plugin from local repository and how to fix this ?
Update
Please note, that I have slow network connection via proxy-server. So probably it's the issue. But in this case I wonder why sbt needs network if I have my plugin published-local. And if it's the issue how to eliminate network round trip ?