How to fully clean, re-resolve and rebuild a Scala sbt-managed project in IDEA?

前端 未结 10 676
一向
一向 2021-02-02 06:18

TL;DR: How can I fully reconcile all dependencies in IntelliJ when SBT file changes

I have a SBT project setup in IntelliJ. For the most part if works l

10条回答
  •  执笔经年
    2021-02-02 06:52

    If you are using the activator through a terminal/shell/command prompt use the following command:

    activator clean
    

    Or just "clean" on the sbt shell through intellij

    It should help reset things and next time you run or compile, it should go through it from scratch.

提交回复
热议问题