我在build.sbt
libraryDependencies ++= {
Seq(
"net.liftweb" %% "lift-webkit" % liftVersion % "compile",
"net.liftweb" %% "lift-mapper" % liftVersion % "compile",
)
}
下,
在终端控制台中,
我输入了sbt update
& sbt eclipse
但是,我只想使用Eclipse IDE
我该怎么做?
(使用的eclipse插件:Scala-ide for eclipse v3.0.0
)
答案 0 :(得分:2)
目前Eclipse插件不会这样做。我们最终会做到这一点,但目前你需要运行sbt eclipse
(并刷新项目,如果你没有启用自动刷新)。希望你不需要经常这样做。 ; - )