-
Notifications
You must be signed in to change notification settings - Fork 30
/
build.sbt
47 lines (40 loc) · 1.07 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
enablePlugins(BuildInfoPlugin, SbtPlugin, GatlingOssPlugin)
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
name := "gatling-sbt"
scalaVersion := "2.12.20"
sbtPlugin := true
githubPath := "gatling/gatling-sbt-plugin"
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"io.gatling" % "gatling-enterprise-plugin-commons" % "1.10.0",
"io.gatling" % "gatling-shared-cli" % "0.0.5"
)
scriptedLaunchOpts := {
scriptedLaunchOpts.value ++
Seq(
"-Xmx512m",
"-Dgatling.data.enableAnalytics=false",
"-Dplugin.version=" + version.value
)
}
scriptedBufferLog := false
pluginCrossBuild / sbtVersion := "1.9.9"
gatlingDevelopers := Seq(
GatlingDeveloper(
"Stéphane Landelle",
true
),
GatlingDeveloper(
"Sébastien Brevet",
true
),
GatlingDeveloper(
"Thomas Petillot",
true
)
)
buildInfoKeys := Seq[BuildInfoKey](name, version)
buildInfoPackage := "io.gatling.sbt"