forked from Amerousful/gatling-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (26 loc) · 946 Bytes
/
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
name := "gatling-kafka"
version := "3.1"
scalaVersion := "2.13.12"
val gatlingVersion = "3.9.5"
resolvers += "confluent" at "https://packages.confluent.io/maven/"
libraryDependencies ++= Seq(
"io.gatling" % "gatling-core" % gatlingVersion % "provided",
"io.gatling" % "gatling-core-java" % gatlingVersion % "provided",
"com.github.spotbugs" % "spotbugs-annotations" % "4.7.3",
"com.typesafe.akka" %% "akka-stream-kafka" % "4.0.2",
"com.typesafe.akka" %% "akka-protobuf-v3" % "2.7.0",
"com.typesafe.akka" %% "akka-stream" % "2.7.0",
"com.typesafe.akka" %% "akka-slf4j" % "2.7.0",
"com.thesamet.scalapb" % "scalapb-runtime_2.13" % "0.11.15",
"io.confluent" % "kafka-protobuf-serializer" % "7.6.0" % "provided",
)
scalacOptions ++= Seq(
"-Xfatal-warnings",
"-deprecation",
"-feature",
"-unchecked",
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-language:postfixOps"
)