-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
38 lines (32 loc) · 1.38 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
name := "ScalaFPCode"
version := "0.1"
enablePlugins(GatlingPlugin)
enablePlugins(JmhPlugin)
scalaVersion := "2.12.8"
scalacOptions := Seq(
"-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation",
"-feature", "-unchecked", "-language:implicitConversions", "-language:postfixOps")
libraryDependencies ++= {
Seq(
"com.typesafe.akka" %% "akka-stream" % "2.6.10",
"com.typesafe.akka" %% "akka-actor" % "2.6.10",
"com.typesafe.akka" %% "akka-http" % "10.1.11",
"com.typesafe.akka" %% "akka-remote" % "2.6.10",
"io.reactivex" %% "rxscala" % "0.27.0",
"org.typelevel" %% "cats-core" % "2.1.0",
"io.spray" % "spray-json_2.12" % "1.3.5",
"com.google.guava" % "guava" % "28.2-jre",
"com.typesafe.akka" %% "akka-http-testkit" % "10.1.11" % Test,
"org.scalacheck" %% "scalacheck" % "1.14.3" % Test,
"org.scalactic" %% "scalactic" % "3.1.0" % Test,
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
"dev.zio" %% "zio" % "1.0.3",
"org.scalaz" %% "scalaz-core" % "7.2.30",
"com.softwaremill.macwire" %% "macros" % "2.3.3" % "provided",
"io.gatling.highcharts" % "gatling-charts-highcharts" % "3.4.1" % "test,it",
"io.gatling" % "gatling-test-framework" % "3.2.1" % "test,it",
"com.github.tototoshi" %% "scala-csv" % "1.3.6",
"com.nrinaudo" %% "kantan.csv-generic" % "0.5.1",
"com.github.melrief" %% "purecsv" % "0.1.1"
)
}