From 61b5d79f068d6e50b25423da8dabcb9efd03384f Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 5 Feb 2025 17:35:00 +0100 Subject: [PATCH 1/3] Update build.sbt --- core/amber/build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/amber/build.sbt b/core/amber/build.sbt index ad7790459d9..d7264a75f94 100644 --- a/core/amber/build.sbt +++ b/core/amber/build.sbt @@ -40,8 +40,8 @@ val akkaDependencies = Seq( "com.typesafe.akka" %% "akka-cluster" % akkaVersion, "com.typesafe.akka" %% "akka-cluster-metrics" % akkaVersion, "com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion, - "com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion, - "com.typesafe.akka" %% "akka-testkit" % akkaVersion, + "com.typesafe.akka" %% "akka-multi-node-testkit" % akkaVersion % Test, + "com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test, "com.typesafe.akka" %% "akka-persistence" % akkaVersion, "io.kamon" % "sigar-loader" % "1.6.6-rev002", "com.softwaremill.macwire" %% "macros" % "2.5.8" % Provided, @@ -49,7 +49,7 @@ val akkaDependencies = Seq( "com.softwaremill.macwire" %% "util" % "2.5.8", "com.softwaremill.macwire" %% "proxy" % "2.5.8", "com.typesafe.akka" %% "akka-slf4j" % akkaVersion, - "ch.qos.logback" % "logback-classic" % "1.2.3" + "ch.qos.logback" % "logback-classic" % "1.2.10" % Test ) // dropwizard web framework From 13ad784c8c8f2d8c595482dd53045f246476af32 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 5 Feb 2025 20:10:31 +0100 Subject: [PATCH 2/3] Update build.sbt --- core/amber/build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/amber/build.sbt b/core/amber/build.sbt index d7264a75f94..545d654f95c 100644 --- a/core/amber/build.sbt +++ b/core/amber/build.sbt @@ -49,7 +49,7 @@ val akkaDependencies = Seq( "com.softwaremill.macwire" %% "util" % "2.5.8", "com.softwaremill.macwire" %% "proxy" % "2.5.8", "com.typesafe.akka" %% "akka-slf4j" % akkaVersion, - "ch.qos.logback" % "logback-classic" % "1.2.10" % Test + "ch.qos.logback" % "logback-classic" % "1.2.13" % Test ) // dropwizard web framework From 9046fc64d205ac366465133350fcb98f186dd69c Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 5 Feb 2025 20:11:35 +0100 Subject: [PATCH 3/3] Update build.sbt --- core/amber/build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/amber/build.sbt b/core/amber/build.sbt index 545d654f95c..69af9dbef1f 100644 --- a/core/amber/build.sbt +++ b/core/amber/build.sbt @@ -81,7 +81,7 @@ val mbknorJacksonJsonSchemaDependencies = Seq( "javax.validation" % "validation-api" % "2.0.1.Final", "org.slf4j" % "slf4j-api" % "1.7.26", "io.github.classgraph" % "classgraph" % "4.8.157", - "ch.qos.logback" % "logback-classic" % "1.2.3" % "test", + "ch.qos.logback" % "logback-classic" % "1.2.13" % "test", "com.github.java-json-tools" % "json-schema-validator" % "2.2.14" % "test", "com.fasterxml.jackson.module" % "jackson-module-kotlin" % jacksonVersion % "test", "com.fasterxml.jackson.datatype" % "jackson-datatype-jdk8" % jacksonVersion % "test", @@ -89,7 +89,7 @@ val mbknorJacksonJsonSchemaDependencies = Seq( "joda-time" % "joda-time" % "2.12.5" % "test", "com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % jacksonVersion % "test", "com.fasterxml.jackson.module" % "jackson-module-jsonSchema" % jacksonVersion, - "com.fasterxml.jackson.module" % "jackson-module-scala_2.13" % jacksonVersion, + "com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion, // https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-no-ctor-deser "com.fasterxml.jackson.module" % "jackson-module-no-ctor-deser" % jacksonVersion, )