I have a .sbt file with 4 projects. They all share many dependencies. When I Refresh SBT
in Idea, it seems to resolve all dependencies over and over again, even if they have been previously resolved in other projects.
Is there any way to prevent this?
There's cached resolution:
The intended performance improvement is that the second and third subprojects can take advantage of the resolved minigraphs from the first one and avoid duplicated work.
Try it with setting:
updateOptions := updateOptions.value.withCachedResolution(true)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With