No, they are not packaged together.
The easiest way to make sure that the Eclipse IDE can see your dependencies (Akka and everything that is specified in the build.sbt file) is to let sbt do this using the sbteclipse plugin. Here are the instructions I wrote for the staff:
Install the sbteclipse plugin
This plugin will allow sbt to add files / links that Eclipse should find for all the dependencies specified in the build.sbt file. Otherwise, you can use the IDE, but you will look for all kinds of errors "object not found".
Just make sure the plugin is added to your global plugins.sbt file. This file (and its path) may not exist, so you may need to create it in the following location:
~/.sbt $ cd ~/.sbt/0.13/ ~/.sbt/0.13 $ mkdir plugins
Edit / create plugins.sbt file:
~/.sbt/0.13 $ vi plugins/plugins.sbt
then add this line (it could be the only line in the file):
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")
Running sbteclipse
To use this, you simply go to the scala project on the command line and run the following. If you already have Eclipse open, start it and restart.
/sites/ewuser (master)$ sbt eclipse
References:
source share