Play Framework 2.3.x如何运行示例应用程序?

时间:2015-02-18 07:55:15

标签: playframework sbt playframework-2.3

我安装了Play 2.3.7,并且activator命令与我在本地创建的其他播放应用程序一起使用。

但是,当我尝试克隆Play Framework from github and run one of the 2.3.x sample applications时,activator命令失败并显示空指针异常。同样,如果我尝试将项目导入到IntelliJ并从.sbt文件构建,我会得到同样的错误:

IntelliJ import error

我需要在build.sbt文件中更改一些内容才能正确加载吗?我猜这是我非常简单的事情。

TL; DR :从github克隆时,如何运行Play 2.3.x示例应用程序?

1 个答案:

答案 0 :(得分:2)

指定plugins.sbt

中的确切播放版本

来自

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % System.getProperty("play.version"))

To(假设您正在使用游戏2.3.1)

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.1")

然后activator clean再次运行。

Source