-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
55 lines (39 loc) · 1.6 KB
/
build.sbt
File metadata and controls
55 lines (39 loc) · 1.6 KB
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
49
50
51
52
53
54
55
organization := "scalegray"
version := "0.1"
scalaVersion := "2.11.7"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
lazy val circeVersion = "0.3.0"
resolvers ++= Seq(
Resolver.bintrayRepo("scalaz", "releases")
)
libraryDependencies ++= {
val akkaV = "2.4.3"
val akkaStreamVersion = "2.0-M1"
val sprayV = "1.3.3"
val scalazVersion = "7.2.0"
Seq(
"org.specs2" %% "specs2-core" % "2.3.11" % "test",
"com.github.finagle" %% "finch-core" % "0.10.0",
"com.github.finagle" %% "finch-circe" % "0.10.0",
"com.twitter" %% "twitter-server" % "1.18.0",
"org.apache.thrift" % "libthrift" % "0.9.3",
"io.circe" %% "circe-core" % circeVersion,
// "io.circe" %% "circe-jawn" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
"org.scalaz" % "scalaz-core_2.11" % "7.2.0",
"io.jvm.uuid" %% "scala-uuid" % "0.2.1",
"org.scalatest" % "scalatest_2.11" % "2.2.6" % "test",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-cluster" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaV
// "org.scalaz" %% "scalaz-core" % scalazVersion
//"org.scalaz" %% "scalaz-iteratee_2.11" % scalazVersion,
//"org.scalaz" %% "scalaz-effect_2.11" % scalazVersion,
//"org.scalaz" %% "scalaz-concurrent_2.11" % scalazVersion % "test"
// "io.circe" %% "circe-jackson" % circeVersion
)
}
Revolver.settings