-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
25 lines (19 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
name := "github-reader-akka"
version := "1.0"
scalaVersion := "2.11.8"
resolvers += Resolver.jcenterRepo
libraryDependencies += "com.typesafe.akka" % "akka-actor_2.11" % "2.4.14"
libraryDependencies += "com.typesafe.akka" % "akka-http_2.11" % "10.0.0"
libraryDependencies += "com.typesafe.akka" % "akka-http-spray-json_2.11" % "10.0.0"
libraryDependencies += "com.typesafe.akka" % "akka-persistence_2.11" % "2.4.14"
libraryDependencies += "org.scalaz" %% "scalaz-core" % "7.2.8"
libraryDependencies += "com.okumin" %% "akka-persistence-sql-async" % "0.4.0"
libraryDependencies += "com.github.mauricio" %% "postgresql-async" % "0.2.20"
libraryDependencies += "com.github.dnvriend" %% "akka-persistence-inmemory" % "2.4.17.1"
libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria" % "1.0.0",
"org.sangria-graphql" %% "sangria-spray-json" % "1.0.0",
"com.typesafe.akka" %% "akka-http" % "10.0.0",
"com.typesafe.akka" %% "akka-http-spray-json" % "10.0.0",
"org.scalatest" %% "scalatest" % "3.0.1" % Test
)