Skip to content

Commit a6e3ae2

Browse files
committed
Bump versions
1 parent 0b50de3 commit a6e3ae2

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.gitattributes

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
*.sh text eol=lf
1+
*.sh text eol=lf
2+
*.sh text eol=lf
3+
*.srt text

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ val keycloakVersion = "26.0.8"
1919
val sttpVersion = "3.10.1"
2020
val influxdbVersion = "7.1.0"
2121
val awsClientVersion = "2.25.32"
22-
val gatlingVersion = "3.13.1"
22+
val gatlingVersion = "3.13.5"
2323
val circeVersion = "0.14.8"
2424

2525
libraryDependencies ++= Seq(

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.10.7
1+
sbt.version=1.10.10

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.0")
1+
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.2")
22
//The now built in dependencyTree task is usually enough
33
//https://www.scala-sbt.org/1.x/docs/sbt-1.4-Release-Notes.html#sbt-dependency-graph+is+in-sourced
44
//addDependencyTreePlugin
55

66
// https://docs.gatling.io/reference/integrations/build-tools/sbt-plugin
7-
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.10.2")
7+
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.13.1")

src/test/scala/DirectoryWatcherSimulation.scala

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@ import scala.concurrent.duration.*
1313
/**
1414
* Show the use of Gatling ActionBuilder to create a custom action
1515
* In our case to generate files to be picked up by the [[DirectoryWatcher]]
16-
* Since there are not HTTP requests issued by this simulation,
17-
* we do not get a report at the end
1816
*
1917
* Run from terminal:
20-
* sbt 'Gatling/testOnly DirectoryWatcherSimulation'
18+
* sbt 'Gatling/testOnly DirectoryWatcherSimulation -- --no-reports'
2119
*/
2220
class DirectoryWatcherSimulation extends Simulation {
2321
private val rootDir = "/tmp/directory-watcher-simulation"
@@ -104,4 +102,4 @@ class DirectoryWatcherSimulation extends Simulation {
104102
global.responseTime.max.lt(5000),
105103
global.successfulRequests.percent.is(100)
106104
).maxDuration(30.seconds) // For now stop like this
107-
}
105+
}

0 commit comments

Comments
 (0)