答案 0 :(得分:1)
忘了回答这个问题。这是与索引intellij-idea相关的问题。很多时候想法都无法正确索引或无法导入sbt项目。因此,可能有效的两个选项是转到文件>使缓存失效并重新启动或再次导入项目,如提及here。很抱歉这件事迟到了。
修改1
以上链接中的更多详细信息可为答案添加更多说明
On the right-hand side of your IntelliJ window, you will see a list of vertical tabs, open the SBT tab.
Select the module that's causing trouble, right click on it, select "Detach external project"
Try to import the module again.
答案 1 :(得分:0)
请查看example build.sbt with upickle。 您不需要在共享项目中高速上瘾。 相反,你需要在服务器中作为
"com.lihaoyi" %% "upickle" % <latestVersion>
在客户端
"com.lihaoyi" %%% "upickle" % <latestVersion>
确保您在服务器中使用了2%的标志,在客户端中使用了3个。