forked from oluies/akka-sample-trading
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
25 lines (12 loc) · 759 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name := "akka-sample-trading"
version := "1.1.3-SNAPSHOT"
scalaVersion := "2.9.0-1"
scalacOptions ++= Seq("-unchecked", "-deprecation")
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases"
libraryDependencies += "se.scalablesolutions.akka" % "akka-actor" % "1.1.3"
libraryDependencies += "se.scalablesolutions.akka" % "akka-dispatcher-extras" % "1.1.3"
libraryDependencies += "org.fusesource.hawtdispatch" % "hawtdispatch-scala" % "1.4"
libraryDependencies += "org.apache.commons" % "commons-math" % "2.1"
libraryDependencies += "junit" % "junit" % "4.8.2" % "test"
libraryDependencies += "org.scala-tools.testing" % "specs" % "1.6.1" % "test"
libraryDependencies += "org.mockito" % "mockito-all" % "1.8.0" % "test"