forked from hpi-epic/pricewars-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
46 lines (38 loc) · 1.84 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
46
name := "Marketplace"
version := "1.0"
scalaVersion := "2.11.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += Resolver.bintrayRepo("cakesolutions", "maven")
libraryDependencies ++= {
val akkaV = "2.4.16"
val sprayV = "1.3.3"
val specs2V = "3.8.6"
val scalikejdbcV = "2.5.0"
val logbackV = "1.1.8"
val kafkaV = "0.10.1.1"
val scalaxmlV = "1.0.6"
val commonsCodecV = "1.10"
val redisClientV = "3.3"
val scalarxV = "0.3.2"
Seq(
"io.spray" %% "spray-servlet" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"io.spray" %% "spray-json" % sprayV,
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-testkit" % sprayV % "test" exclude("org.specs2", "specs2_2.11"),
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"org.specs2" %% "specs2-core" % specs2V % "test",
"org.scalikejdbc" %% "scalikejdbc" % scalikejdbcV,
"org.scalikejdbc" %% "scalikejdbc-config" % scalikejdbcV,
"ch.qos.logback" % "logback-classic" % logbackV,
"net.cakesolutions" %% "scala-kafka-client-akka" % kafkaV,
"org.scala-lang.modules" %% "scala-xml" % scalaxmlV,
"commons-codec" % "commons-codec" % commonsCodecV,
"net.debasishg" %% "redisclient" % redisClientV,
"com.lihaoyi" %% "scalarx" % scalarxV
)
}
parallelExecution in Test := false
enablePlugins(TomcatPlugin)