-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
36 lines (27 loc) · 1.02 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
name := "AKKAHTTP"
version := "0.1"
scalaVersion := "2.11.8"
val akkaVersion = "2.5.20"
val akkaHttpVersion = "10.1.7"
val scalaTestVersion = "3.0.5"
libraryDependencies ++={
Seq(
/** Scala Dependency */
"org.scala-lang" % "scala-library" % "2.11.8",
/**akka actor and akka http Dependencies*/
"com.typesafe.akka" %% "akka-actor" % "2.5.20",
"com.typesafe.akka" %% "akka-http" % "10.1.7",
"com.typesafe.akka" %% "akka-http-core" % "10.1.7",
"ch.megard" %% "akka-http-cors" % "0.3.0",
"com.typesafe.akka" %% "akka-http-spray-json" % "10.1.7",
//Akka Stream Support
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion,
/**logger Dependencies*/
"org.apache.logging.log4j" % "log4j-core" % "2.8.2",
"org.apache.logging.log4j" % "log4j-api" % "2.8.2",
"org.apache.logging.log4j" %% "log4j-api-scala" % "11.0"
)
}