-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (25 loc) · 1004 Bytes
/
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
import io.gatling.sbt.GatlingPlugin
name := """tutuk-performance"""
version := "1.0"
scalaVersion := "2.11.7"
retrieveManaged := true
enablePlugins(GatlingPlugin)
libraryDependencies ++= {
val AkkaHttpVersion = "2.4.7"
Seq(
"com.typesafe.akka" %% "akka-http-experimental" % AkkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit-experimental" % "2.4.2-RC3",
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % "2.4.2",
"org.scalatest" %% "scalatest" % "2.2.6",
"com.github.etaty" %% "rediscala" % "1.6.0",
"io.spray" %% "spray-routing" % "1.3.2",
"io.spray" %% "spray-can" % "1.3.2",
"io.spray" %% "spray-json" % "1.3.2",
"io.spray" %% "spray-client" % "1.3.2",
"org.mongodb.scala" %% "mongo-scala-driver" % "2.0.0",
"org.slf4j" % "slf4j-simple" % "1.6.4",
"io.gatling.highcharts" % "gatling-charts-highcharts" % "2.2.0-M3",
"io.gatling" % "gatling-test-framework" % "2.2.0-M3"
)
}
fork in run := true