-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
51 lines (26 loc) · 1.46 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
name := "SocialGroupApplication"
version := "0.1"
scalaVersion := "2.12.8"
libraryDependencies += "com.github.nosan" % "embedded-cassandra" % "3.0.0"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.6.0-M8"
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.1.10"
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % "2.6.0-M8"
libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.10"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
libraryDependencies += "dev.zio" %% "zio" % "1.0.0-RC15"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.10"
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.28"
libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.7.28"
libraryDependencies += "com.outworkers" %% "phantom-dsl" % "2.42.0"
libraryDependencies += "org.scalatest" %% "scalatest-matchers-core" % "3.2.0-M1" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.0-M1" % Test
libraryDependencies += "org.scalatest" %% "scalatest-wordspec" % "3.2.0-M1" % Test
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream-testkit" % "2.6.0-M8" % Test,
"com.typesafe.akka" %% "akka-http-testkit" % "10.1.10" % Test
)
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
//libraryDependencies ++= Seq(
//"io.spray" % "spray-routing-shapeless2" % "1.3.5"
//)