Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f0ef08a

Browse files
committedDec 29, 2024
[SCALA-568] Added gatling module
adding the gatling-sbt plugin
1 parent 148ecb6 commit f0ef08a

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed
 

‎scala-gatling/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
target
2+
.idea
3+
.settings
4+
.classpath
5+
.project

‎scala-gatling/build.sbt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
enablePlugins(GatlingPlugin)
2+
3+
scalaVersion := "2.13.15"
4+
5+
scalacOptions := Seq(
6+
"-encoding", "UTF-8", "-release:8", "-deprecation",
7+
"-feature", "-unchecked", "-language:implicitConversions", "-language:postfixOps")
8+
9+
val gatlingVersion = "3.13.1"
10+
libraryDependencies += "io.gatling.highcharts" % "gatling-charts-highcharts" % gatlingVersion % "test,it"
11+
libraryDependencies += "io.gatling" % "gatling-test-framework" % gatlingVersion % "test,it"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.10.7

‎scala-gatling/project/plugins.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.11.1")

0 commit comments

Comments
 (0)
Please sign in to comment.