我被困住了。
我在 Mac 上并已使用 brew 安装了类型安全堆栈
我已经使用play new appname创建了一个新的游戏项目,一切都很好。
我正在尝试使用play idea将其导入 intelliJ - 但是当我这样做时,我收到以下错误;
[error] no sbt-idea plugin for this version of sbt - 0.11.3
我有戏!2.0.3 和 sbt 0.11.3
知道我实际上是如何解决这个问题的吗?
我被困住了。
我在 Mac 上并已使用 brew 安装了类型安全堆栈
我已经使用play new appname创建了一个新的游戏项目,一切都很好。
我正在尝试使用play idea将其导入 intelliJ - 但是当我这样做时,我收到以下错误;
[error] no sbt-idea plugin for this version of sbt - 0.11.3
我有戏!2.0.3 和 sbt 0.11.3
知道我实际上是如何解决这个问题的吗?
首先,确保您已遵循:官方安装说明
这目前将导致以下异常:
java.lang.NoSuchMethodError: org.sbtidea.SbtIdeaPlugin$.ideaSettings()Lscala/collection/Seq; at
sbt.PlayCommands$class.intellijCommandSettings(PlayCommands.scala:214)
当前的修复是通过编辑 project.plugins.sbt 文件来降级播放 2.0.1:
// Comment to get more information during initialization
logLevel := Level.Warn
// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0.1")
这似乎暂时解决了这个问题。