From b37b03cd6c8669e1095ba36af12b4583ee7a80e1 Mon Sep 17 00:00:00 2001 From: kciesielski Date: Tue, 13 Feb 2024 09:50:50 +0100 Subject: [PATCH] Pin scopt 3.7.1 --- .scala-steward.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.scala-steward.conf b/.scala-steward.conf index da50d28fd8..d98b386dd3 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -4,4 +4,8 @@ updates.ignore = [ {groupId = "org.scala-lang", artifactId = "scala-compiler", version = "3."}, {groupId = "io.circe", artifactId="circe-yaml", version="1.15.0" } ] -updates.pin = [{ groupId = "com.typesafe.akka", version = "2.6." }] \ No newline at end of file +updates.pin = [ + {groupId = "com.typesafe.akka", version = "2.6."}, + # Gatling uses scopt 3.7.1 and fails on Gatling/testOnly for scopt 4.x + {groupId = "com.github.scopt", artifactId = "scopt", version = "3.7.1"} +]