为什么IntelliJ IDEA在导入期间无法识别Play 2应用程序?

时间:2014-09-19 01:02:23

标签: intellij-idea playframework sbt typesafe-activator

我试图关注'Introduction to Play Framework'视频,发生以下情况:

enter image description here

然而,

安装了SBT:

enter image description here

从JetBrains插件下载最新版本并从磁盘手动安装 - 应用程序内浏览器似乎找不到它。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

问题是由于您的项目“配置错误”,即IntelliJ IDEA不支持sbt 0.12.4及更早版本的sbt项目。

您应该将project/build.properties更改为:

sbt.version=0.13.6

您还应将project/plugins.sbt更改为:

resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// The Play plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.4")

我强烈建议您运行activator new playApp play-scala以获得全新的Play应用程序,而无需更改其他文件(如果还有更新文件)。

确保您使用的the latest version of Typesafe Activator应为1.2.10。执行activator,它应检查是否需要更新。