0

运行播放控制台(2.0.4)时,它返回:

[info] Loading global plugins from /home/matt/.sbt/plugins
[info] Loading project definition from /home/matt/src/app/project
[error] java.lang.NoSuchMethodError:       org.sbtidea.SbtIdeaPlugin$.ideaSettings()Lscala/collection/Seq;

抛出异常PlayCommands.scala:214,它看起来像一个已知的错误

然而,解决方法似乎并不立即明显(升级不足)。

4

2 回答 2

1

首先,你必须暂时禁用你的全局sbt-idea插件。您可以通过注释掉 ( //) 这一行来做到这一点:

addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.3.0")

应该存在于以下文件之一中:

/home/matt/.sbt/plugins/build.sbt或者/home/matt/.sbt/plugins/plugins.sbt

其次,您必须删除 ( rm -rf) 这些目录:

  • /home/matt/.sbt/plugins/project
  • /home/matt/.sbt/plugins/target
于 2013-05-02T11:43:04.023 回答
0

When this happens, I do a "play clean" & "play compile"

于 2013-07-08T13:42:55.873 回答