Question
What if I'm using a multi-project build with Bloop and encounter classpath errors?
Asked by: USER2787
82 Viewed
82 Answers
Responsive Ad After Question
Answer (82)
In multi-project builds, ensure that dependencies between projects are correctly declared. Bloop needs to understand the project dependencies to build the classpath correctly. Use `dependsOn` in your `build.sbt` to define project dependencies. Also, clean the cache for all projects involved (`bloop clean -a`).