-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
40 lines (39 loc) · 1.44 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
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
lazy val root = (project in file("."))
.enablePlugins(SbtPlugin, GatlingOssPlugin)
.settings(
name := "gatling-build-plugin",
homepage := Some(new URI("https://gatling.io").toURL),
organization := "io.gatling",
organizationHomepage := Some(new URI("https://gatling.io").toURL),
startYear := Some(2011),
licenses := Seq("Apache-2.0" -> new URI("http://www.apache.org/licenses/LICENSE-2.0.html").toURL),
scalaVersion := "2.12.20",
scalacOptions := Seq(
"-encoding",
"UTF-8",
"-release",
"11",
"-deprecation",
"-feature",
"-unchecked"
),
scriptedLaunchOpts := {
scriptedLaunchOpts.value ++
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
},
scriptedBufferLog := false,
githubPath := "gatling/gatling-build-plugin",
gatlingDevelopers := Seq(
GatlingDeveloper("[email protected]", "Stéphane Landelle", true),
GatlingDeveloper("[email protected]", "Pierre Dal-Pra", false),
GatlingDeveloper("[email protected]", "Guillaume Corre", true),
GatlingDeveloper("[email protected]", "Thomas Petillot", true),
GatlingDeveloper("[email protected]", "Sébastien Brevet", true)
),
// ------------------ //
// -- DEPENDENCIES -- //
// ------------------ //
PluginDependencies.deps,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % Test
)