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
- Install Simple Build Tool (SBT) version 0.12.0: http://www.scala-sbt.org/release/docs/Getting-Started/Setup
- Clone this repository into
akka-koans/
directory:git clone https://github.com/maciejjaskowski/akka-koans.git
- In
akka-koans/
directory executesbt 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
- Download version 2.0.2 of Scala IDE: http://scala-ide.org/download/current.html
- In
akka-koans
directory executesbt eclipse
- 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)