Setup - maciejjaskowski/akka-koans GitHub Wiki

Getting started

Note this project might not work with Scala 2.10.0 without minor changes in imports due to partial incorporation of Akka into standard Scala libraries. Also latest Scala IDE version doesn't support Scala 2.10.0 yet. Therefore, for simplicity, I recommend installing Scala 2.9.2.

Scala + SBT + repository

  1. Install Simple Build Tool (SBT) version 0.12.0: http://www.scala-sbt.org/release/docs/Getting-Started/Setup
  2. Clone this repository into akka-koans/ directory: git clone https://github.com/maciejjaskowski/akka-koans.git
  3. In akka-koans/ directory execute sbt test

Well done! (If you see something like this at the bottom of your terminal... ;)

[info] WorkerSuite:

[info] - calculates first value (4)

[info] Passed: : Total 2, Failed 0, Errors 0, Passed 2, Skipped 0

Scala IDE

  1. Download version 2.0.2 of Scala IDE: http://scala-ide.org/download/current.html
  2. In akka-koans directory execute sbt eclipse
  3. Import the project into Scala IDE (just as in "normal" Eclipse)

Well done! (if your project compiles under Scala IDE and you can run JUnit tests)