This repository has been archived by the owner on Aug 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
41 lines (34 loc) · 1.6 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
name := "Marketplace"
version := "1.0"
scalaVersion := "2.11.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-feature")
resolvers += Resolver.bintrayRepo("cakesolutions", "maven")
libraryDependencies ++= {
val akkaV = "2.5.16"
val akkaHttpV = "10.1.5"
val sprayV = "1.3.3"
val specs2V = "3.8.6"
val scalikejdbcV = "3.3.0"
val kafkaV = "1.1.1"
val commonsCodecV = "1.10"
val redisClientV = "3.8"
val scalarxV = "0.3.2"
Seq(
"io.spray" %% "spray-json" % sprayV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV % "test",
"org.specs2" %% "specs2-core" % specs2V % "test",
"org.scalikejdbc" %% "scalikejdbc" % scalikejdbcV,
"org.scalikejdbc" %% "scalikejdbc-config" % scalikejdbcV,
"net.cakesolutions" %% "scala-kafka-client-akka" % kafkaV,
"commons-codec" % "commons-codec" % commonsCodecV,
"net.debasishg" %% "redisclient" % redisClientV,
"com.lihaoyi" %% "scalarx" % scalarxV
)
}
parallelExecution in Test := false