From 28680b3548768ccb5f2b897afe5263be5a253677 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 31 Aug 2025 14:26:51 +0100 Subject: [PATCH] Pin sbt-assembly version to 2.2 (#2122) --- .scala-steward.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.scala-steward.conf b/.scala-steward.conf index 7e3010e7a2..8e5a0e4dba 100644 --- a/.scala-steward.conf +++ b/.scala-steward.conf @@ -1,6 +1,8 @@ updates.pin = [ # Scala 3.3 is the latest LTS version { groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." } + # sbt-assembly 2.3 causes build issues (https://github.com/apache/pekko/pull/1744) + { groupId = "com.eed3si9n", artifactId = "sbt-assembly", version = "2.2." } ] updates.ignore = [ @@ -13,7 +15,6 @@ updates.ignore = [ { groupId = "com.fasterxml.jackson.datatype" } { groupId = "com.fasterxml.jackson.jaxrs" } # other ignored updates - { groupId = "com.typesafe", artifactId = "ssl-config-core" } { groupId = "com.lightbend.sbt", artifactId = "sbt-java-formatter" } ]