forked from fehmicansaglam/tcp-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (25 loc) · 1 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
name := "tcp-async"
version := "1.0"
scalaVersion := "2.10.2"
resolvers ++= Seq(
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
"spray repo" at "http://nightlies.spray.io"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.2.0",
"com.typesafe.akka" %% "akka-testkit" % "2.2.0",
"com.github.mauricio" %% "mysql-async" % "0.2.6",
"com.typesafe" % "config" % "1.0.2",
"org.scalatest" % "scalatest_2.10" % "1.9.1" % "test",
"org.mockito" % "mockito-core" % "1.9.5" % "test",
"io.spray" % "spray-can" % "1.2-20130912",
"io.spray" % "spray-http" % "1.2-20130912",
"io.spray" % "spray-httpx" % "1.2-20130912",
"io.spray" % "spray-util" % "1.2-20130912",
"io.spray" % "spray-client" % "1.2-20130912",
"io.spray" % "spray-testkit" % "1.2-20130912",
"io.spray" % "spray-routing" % "1.2-20130912",
"org.mockito" % "mockito-all" % "1.9.5" % "test"
)
seq(ScctPlugin.instrumentSettings : _*)
seq(com.github.theon.coveralls.CoverallsPlugin.coverallsSettings: _*)