-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
30 lines (27 loc) · 1.3 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
val AkkaVersion = "2.9.0"
val AkkaDiagnosticsVersion = "2.1.0"
val LogbackClassicVersion = "1.2.11"
val ScalaTestVersion = "3.1.1"
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.xebia"
ThisBuild / organizationName := "Xebia"
lazy val root = (project in file("."))
.settings(
name := "Kafka Producer POC",
resolvers += "Akka library repository".at("https://repo.akka.io/maven"),
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor-typed" % AkkaVersion,
"com.typesafe.akka" %% "akka-stream-kafka" % "5.0.0",
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
"com.typesafe.akka" %% "akka-persistence-typed" % AkkaVersion,
"com.typesafe.akka" %% "akka-serialization-jackson" % AkkaVersion,
"com.typesafe.akka" %% "akka-cluster-sharding-typed" % AkkaVersion,
"com.typesafe.akka" %% "akka-distributed-data" % AkkaVersion,
"com.lightbend.akka" %% "akka-diagnostics" % AkkaDiagnosticsVersion,
"ch.qos.logback" % "logback-classic" % LogbackClassicVersion,
"com.newrelic.agent.java" %% "newrelic-scala-api" % "8.7.0",
"com.typesafe.akka" %% "akka-actor-testkit-typed" % AkkaVersion % Test,
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test
),
)