To install simply add the following to the project/plugins.sbt and make sure you keep new lines between all the settings in your sbt files, you need to add the xsbt plugin to be able to run the container:start/stop commands and run your project

https://gist.github.com/1716027

You can define new keys in project/Build.scala or any other .scala file under the project folder

https://gist.github.com/1716152

in build.sbt add the following line, you need this to have library sources for all your dependencies and you can use your keys to fetch your dependencies:

https://gist.github.com/1716041

after this is done you should be able to run sbt eclipse and it will generate the eclipse project files for you. If you already have the eclipse project remove it from your workspace and import it again after you execute sbt eclipse. You should be able to browse code in eclipse.

Compile your project:

sbt compile

run:

sbt

container:start

container:stop