This repository has been archived by the owner. It is now read-only.
forked from Tinkoff/gatling-kafka-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (36 loc) · 1.29 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
import Dependencies._
lazy val root = (project in file("."))
.enablePlugins(GitVersioning)
.settings(
name := "gatling-kafka-plugin",
libraryDependencies ++= gatling,
libraryDependencies ++= kafka,
libraryDependencies ++= avro4s,
libraryDependencies ++= gradleKafka,
libraryDependencies ++= gradleAvro,
libraryDependencies ++= gradle_logging,
libraryDependencies ++= gradle_base,
libraryDependencies ++= gradle_files,
libraryDependencies ++= ant,
resolvers ++= Seq(
"Confluent" at "https://packages.confluent.io/maven/",
"Gradle" at "https://plugins.gradle.org/m2/",
"ivy" at "https://repo.lightbend.com/lightbend/ivy-releases/",
"orgGradle" at "https://mvnrepository.com/artifact/org.gradle/",
"files" at "https://repo.gradle.org/gradle/libs-releases-local/",
"jcip" at "https://repository.mulesoft.org/nexus/content/repositories/public/",
Resolver.sonatypeRepo("public")
),
scalacOptions ++= Seq(
"-encoding",
"UTF-8", // Option and arguments on same line
"-Xfatal-warnings", // New lines for each options
"-deprecation",
"-feature",
"-unchecked",
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-language:postfixOps"
)
)