在eclipse中为Play框架设置sbteclipse

时间:2016-03-23 11:37:53

标签: java eclipse playframework eclipse-plugin sbteclipse

我是Play框架的新手。我跟着这个link,成功安装,但现在我想在eclipse上集成项目。我从游戏中看过official link,但我不明白在哪里写

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")

等步骤。

我正在使用Mac Os X和Eclipse Luna。

1 个答案:

答案 0 :(得分:4)

您需要在“project \ plugins.sbt”文件中编写它:

enter image description here

顺便说一下,如果您打算只使用java(我从标签中看到),那么您也可以将这些行添加到“build.sbt”文件中:

// Compile the project before generating Eclipse files,
// so that generated .scala or .class files for views and routes are present
EclipseKeys.preTasks := Seq(compile in Compile)

// Java project. Don't expect Scala IDE
EclipseKeys.projectFlavor := EclipseProjectFlavor.Java

// Use .class files instead of generated .scala files for views and routes
EclipseKeys.createSrc := EclipseCreateSrc.ValueSet(EclipseCreateSrc.ManagedClasses, EclipseCreateSrc.ManagedResources)

<强>更新

@mkruz 也提出了一个很好的建议:

  

使用文字编辑器修改project/plugins.sbtbuild.sbt   如上所述,然后运行activator eclipsesbt eclipse。   然后,您应该能够通过Eclipse导入项目   File -> Import -> Existing Projects into Workspace