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)