-
Notifications
You must be signed in to change notification settings - Fork 105
/
build.sbt
executable file
·46 lines (25 loc) · 1.53 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
42
43
44
45
46
name := "concurrency-examples"
version := "1.0"
scalaVersion in ThisBuild := "2.11.1"
ensimeScalaVersion in ThisBuild := "2.11.1"
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 += "org.scalaz" %% "scalaz-concurrent" % "7.0.6"
libraryDependencies += "com.typesafe.akka" %% "akka-stream-experimental" % "0.4"
libraryDependencies += "com.quantifind" %% "wisp" % "0.0.4"
libraryDependencies += "org.scalafx" %% "scalafx" % "1.0.0-R8"
unmanagedJars in Compile += Attributed.blank(file(scala.util.Properties.javaHome) / "/lib/jfxrt.jar")
libraryDependencies += "com.storm-enroute" %% "reactive-collections" % "0.5"