문제

I wrote project dependency set in build.sbt

libraryDependencies ++= {
   Seq(
           "net.liftweb" %% "lift-webkit" % liftVersion % "compile",
           "net.liftweb" %% "lift-mapper" % liftVersion % "compile",

   )
 }

next, in terminal console, I input sbt update & sbt eclipse

but, I want to use only Eclipse IDE

How can I do that?

(eclipse plugin used : Scala-ide for eclipse v3.0.0)

도움이 되었습니까?

해결책

Currently the Eclipse plugin won't do that. We'll get to that eventually, but for the moment you need to run sbt eclipse (and refresh the project, if you haven't enabled auto-refresh). Hopefully you don't need to do that too often. ;-)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top