forked from gatling/gatling-sbt-plugin-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
14 lines (10 loc) · 813 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
enablePlugins(GatlingPlugin)
scalaVersion := "2.13.11"
scalacOptions := Seq(
"-encoding", "UTF-8", "-release:8", "-deprecation",
"-feature", "-unchecked", "-language:implicitConversions", "-language:postfixOps")
val gatlingVersion = "3.9.5"
libraryDependencies += "io.gatling.highcharts" % "gatling-charts-highcharts" % gatlingVersion % "test,it"
libraryDependencies += "io.gatling" % "gatling-test-framework" % gatlingVersion % "test,it"
// Enterprise Cloud (https://cloud.gatling.io/) configuration reference: https://gatling.io/docs/gatling/reference/current/extensions/sbt_plugin/#working-with-gatling-enterprise-cloud
// Enterprise Self-Hosted configuration reference: https://gatling.io/docs/gatling/reference/current/extensions/sbt_plugin/#working-with-gatling-enterprise-self-hosted