From f7f6674f5a6b2095f89c3e27e7b27bbd25937088 Mon Sep 17 00:00:00 2001 From: kciesielski Date: Tue, 7 May 2024 10:43:34 +0200 Subject: [PATCH] Fix Gatling version --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 3474002aa7..05b7da4ff7 100644 --- a/build.sbt +++ b/build.sbt @@ -504,10 +504,10 @@ lazy val perfTests: ProjectMatrix = (projectMatrix in file("perf-tests")) name := "tapir-perf-tests", libraryDependencies ++= Seq( // Required to force newer jackson in Pekko, a version that is compatible with Gatling's Jackson dependency - "io.gatling.highcharts" % "gatling-charts-highcharts" % "3.11.12" % "test" exclude ( + "io.gatling.highcharts" % "gatling-charts-highcharts" % "3.11.2" % "test" exclude ( "com.fasterxml.jackson.core", "jackson-databind" ), - "io.gatling" % "gatling-test-framework" % "3.11.12" % "test" exclude ("com.fasterxml.jackson.core", "jackson-databind"), + "io.gatling" % "gatling-test-framework" % "3.11.2" % "test" exclude ("com.fasterxml.jackson.core", "jackson-databind"), "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.17.1", "nl.grons" %% "metrics4-scala" % Versions.metrics4Scala % Test, "com.lihaoyi" %% "scalatags" % Versions.scalaTags % Test,