-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
executable file
·41 lines (23 loc) · 1.37 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name := "concurrency-examples"
version := "1.0"
scalaVersion := "2.11.1"
// scalaVersion := "2.10.4"
resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Sonatype OSS Releases" at "https://oss.sonatype.org/content/repositories/releases",
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
)
fork := false
libraryDependencies += "commons-io" % "commons-io" % "2.4"
libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.9.1"
libraryDependencies += "com.github.scala-blitz" %% "scala-blitz" % "1.2"
libraryDependencies += "com.netflix.rxjava" % "rxjava-scala" % "0.19.1"
libraryDependencies += "org.scala-lang.modules" %% "scala-swing" % "1.0.1"
libraryDependencies += "org.scala-stm" %% "scala-stm" % "0.7"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.2"
libraryDependencies += "com.typesafe.akka" %% "akka-remote" % "2.3.2"
libraryDependencies += "com.storm-enroute" %% "scalameter-core" % "0.6"
// libraryDependencies += "com.twitter" %% "finagle-http" % "6.2.0" // only enable with 2.10.4
libraryDependencies += "org.scalaz" %% "scalaz-concurrent" % "7.0.6"
libraryDependencies += "com.typesafe.akka" %% "akka-stream-experimental" % "0.4"
libraryDependencies += "com.storm-enroute" %% "reactive-collections" % "0.5"