-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
48 lines (38 loc) · 1.32 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
47
48
organization := "com.lucho"
name := "rxspray"
version := "0.1"
scalaVersion := "2.10.3"
val sprayVersion = "1.2.0"
val akkaVersion = "2.2.3"
val logbackVersion = "1.0.9"
resolvers ++= Seq(
"Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases",
"spray repo" at "http://repo.spray.io"
)
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-Xlint",
"-Ywarn-dead-code",
"-language:_",
"-target:jvm-1.7",
"-encoding", "UTF-8"
)
seq(Revolver.settings: _*)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.netflix.rxjava" % "rxjava-core" % "0.15.1",
"com.netflix.rxjava" % "rxjava-scala" % "0.15.1" exclude("org.scala-lang", "scala-library"),
"io.spray" % "spray-can" % sprayVersion,
"io.spray" % "spray-client" % sprayVersion,
"io.spray" % "spray-http" % sprayVersion,
"io.spray" % "spray-httpx" % sprayVersion,
"io.spray" %% "spray-json" % "1.2.5",
"org.scalatest" %% "scalatest" % "2.0" % "test",
"org.scalacheck" %% "scalacheck" % "1.11.1" % "test",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"ch.qos.logback" % "logback-core" % logbackVersion,
"ch.qos.logback" % "logback-classic" % logbackVersion,
"org.projectreactor" % "reactor-logback" % "1.0.0.RELEASE"
)