-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
57 lines (45 loc) · 1.95 KB
/
build.sbt
File metadata and controls
57 lines (45 loc) · 1.95 KB
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
47
48
49
50
51
52
53
54
55
56
57
name := "processing-service"
version := "0.1"
scalaVersion := "2.12.4"
val akkaVersion = "2.5.8"
val akkaHttpVersion = "10.0.11"
resolvers ++= Seq(
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
Resolver.bintrayRepo("kamon-io", "sbt-plugins")
)
val processingService = (project in file(".")).enablePlugins(JavaServerAppPackaging)
val akka = Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion,
"de.heikoseeberger" %% "akka-http-json4s" % "1.11.0" exclude("org.json4s", "json4s-core_2.11"),
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
)
val logging = Seq(
"com.typesafe" % "config" % "1.3.1",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"org.codehaus.janino" % "janino" % "2.7.8",
"biz.paluch.logging" % "logstash-gelf" % "1.11.0",
"org.codehaus.groovy" % "groovy-all" % "2.4.7" % "runtime"
)
val other = Seq(
"io.kamon" %% "kamon-core" % "1.0.0",
"io.kamon" %% "kamon-zipkin" % "1.0.0",
"io.kamon" %% "kamon-prometheus" % "1.0.0",
"io.kamon" %% "kamon-jaeger" % "1.0.0",
"io.kamon" %% "kamon-akka-2.5" % "1.0.0",
"io.kamon" %% "kamon-akka-remote-2.5" % "1.0.0",
"com.rabbitmq" % "amqp-client" % "5.0.0",
"org.reactivemongo" %% "reactivemongo" % "0.12.6",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.json4s" %% "json4s-jackson" % "3.5.0",
"com.peertopark.java" % "geocalc" % "1.1.0"
)
libraryDependencies ++= akka ++ logging ++ other
resourceDirectory in Compile := baseDirectory.value / "conf"
resourceDirectory in Test := baseDirectory.value / "conf"
unmanagedResourceDirectories in Compile += baseDirectory.value / "src/main/resources"
unmanagedResourceDirectories in Test += baseDirectory.value / "src/main/resources"
parallelExecution in Test := false