got the following in my build.sbt:
name := "Ledger Accounting"
libraryDependencies += "junit" % "junit" % "4.8" % "test"
libraryDependencies += "org.scalatest" % "scalatest" % "1.3" % "test"
This in my .ensime, same directory:
:use-sbt t
:project-package "uk.co.mydomain.ledger"
Using sbt I can compile the above and test a class which imports scalatest classes, however in emacs ensime cannot see anything in libraryDependencies.
Any ideas on how to make ensime pick up my build.sbt and add scalatest to my classpath? Ideally something that doesn't require me managing two lists of the same dependencies!