mirror of
https://github.com/sbt/sbt.git
synced 2026-08-29 01:24:09 +02:00
The way clean was implemented, it was running `clean`, `ivyModule` and `streams` concurrently. This was problematic because clean could blow away files needed by `ivyModule` and `streams`. To fix this, move the cleanCachedResolutionCache into a separate task and run that before the normal clean. Should fix https://github.com/sbt/sbt/issues/5067.