-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
44 lines (39 loc) · 1.2 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
name := "gatling-junitrunner"
organization := "ru.pravo"
sonatypeProfileName := organization.value
version := "3.0.0.0"
scalaVersion := "2.12.3"
libraryDependencies ++= Seq(
"io.gatling" % "gatling-test-framework" % "3.0.0",
"junit" % "junit" % "4.12",
"io.gatling.highcharts" % "gatling-charts-highcharts" % "3.0.0"
)
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
publishMavenStyle := true
pomExtra in Global := {
<url>https://github.com/Pravoru/gatling-junitrunner</url>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<connection>scm:[email protected]:Pravoru/gatling-junitrunner.git</connection>
<developerConnection>scm:git:[email protected]:Pravoru/gatling-junitrunner.git</developerConnection>
<url>github.com/Pravoru/gatling-junitrunner</url>
</scm>
<developers>
<developer>
<id>elufimov</id>
<name>Michael Elufimov</name>
<url>https://github.com/Elufimov</url>
</developer>
</developers>
}
enablePlugins(GatlingPlugin)