-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
52 lines (43 loc) · 1.9 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
47
48
49
50
51
52
scalaVersion := "2.13.8"
lazy val AkkaVersion = "2.6.19"
lazy val AkkaHttpVersion = "10.2.9"
lazy val api = (project in file("api"))
.settings(Seq(
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-actor" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.11",
"io.kamon" %% "kamon-bundle" % "2.5.8",
"io.kamon" %% "kamon-apm-reporter" % "2.5.8",
)
))
lazy val concierge = (project in file("concierge"))
.settings(Seq(
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-actor" % AkkaVersion,
"com.typesafe.akka" %% "akka-remote" % AkkaVersion,
"com.typesafe.akka" %% "akka-cluster" % AkkaVersion,
"com.typesafe.akka" %% "akka-cluster-sharding" % AkkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % AkkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.11",
"com.orbitz.consul" % "consul-client" % "1.5.3",
"io.kamon" %% "kamon-bundle" % "2.5.8",
"io.kamon" %% "kamon-apm-reporter" % "2.5.8",
)
))
lazy val bouncer = (project in file("bouncer"))
.enablePlugins(PlayScala, JavaAgent)
.settings(Seq(
libraryDependencies ++= Seq(
guice,
"com.typesafe.play" %% "play-slick" % "5.0.2",
"org.postgresql" % "postgresql" % "42.5.0",
"io.kamon" %% "kamon-bundle" % "2.5.8",
"io.kamon" %% "kamon-apm-reporter" % "2.5.8",
)
))