-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
41 lines (38 loc) · 1.13 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
import Dependencies.*
def UtilsModule(id: String) = Project(id, file(id))
lazy val root = (project in file("."))
.enablePlugins(GitVersioning)
.settings(
name := "gatling-picatinny",
scalaVersion := "2.13.15",
libraryDependencies ++= gatlingCore,
libraryDependencies ++= gatling,
libraryDependencies ++= fastUUID,
libraryDependencies ++= json4s,
libraryDependencies ++= pureConfig,
libraryDependencies ++= jackson,
libraryDependencies ++= scalaTesting,
libraryDependencies ++= generex,
libraryDependencies ++= jwt,
libraryDependencies ++= influxClientScala,
libraryDependencies ++= circeDeps,
libraryDependencies ++= junit,
scalacOptions := Seq(
"-encoding",
"UTF-8",
"-deprecation",
"-feature",
"-unchecked",
"-language:implicitConversions",
"-language:higherKinds",
"-language:existentials",
"-language:postfixOps",
),
)
lazy val example = (project in file("example"))
.enablePlugins(GatlingPlugin)
.settings(
name := "gatling-picatinny-example",
libraryDependencies ++= gatling,
)
.dependsOn(root)