Skip to content

Instantly share code, notes, and snippets.

@snt
Created October 27, 2014 16:23
Show Gist options
  • Save snt/c10de996c8e8b25c2f3a to your computer and use it in GitHub Desktop.
Save snt/c10de996c8e8b25c2f3a to your computer and use it in GitHub Desktop.
Gatling on sbt (scala 2.11 is not compatible with gatling 1.0)
// project/pugins.sbt:
// addSbtPlugin("io.gatling" % "sbt-plugin" % "1.0")
name := "gatling example"
version := "1.0"
scalaVersion := "2.10.4"
libraryDependencies ++= Seq(
"io.gatling.highcharts" % "gatling-charts-highcharts" % "2.0.1" % "test",
"io.gatling" % "test-framework" % "1.0" % "test"
)
val test = project.in(file("."))
.enablePlugins(GatlingPlugin)
.settings(name := "sesLoadtests",
libraryDependencies ++= Seq(
"io.gatling.highcharts" % "gatling-charts-highcharts" % "2.0.1" % "test",
"io.gatling" % "test-framework" % "1.0" % "test"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment