Created
October 27, 2014 16:23
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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