I have upgraded IntelliJ to version CE 2017.3 from a CE 2017.2.5, and now I cannot build my sbt project. The build gets stuck on the first step:
\"Build: sync
Had an older checked out project causing this issue. Did the usual rm -rf .idea
+ re-import but it kept getting stuck. Tried all sorts of things, but when finally fixed it for me was not just deleting the top-level target
folder, but instead doing
find . -name target -type d -exec rm -rf {} \;
Next open / import went flawlessly. (This was on 2018.1.5, 2018.1.6 and 2018.2 RC.)