From 4fe88bd93f9a942427752e67619af48ae71c06b3 Mon Sep 17 00:00:00 2001 From: Simon Byford Date: Wed, 4 Dec 2024 15:40:54 +0000 Subject: [PATCH] Remove slf4j exclusions The rest of the app is on slf4j v2 now so we shouldn't need these exclusions any more --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index f91d8e2d25..c1e5607505 100644 --- a/build.sbt +++ b/build.sbt @@ -171,8 +171,8 @@ lazy val thrall = playProject("thrall", 9002) lazy val usage = playProject("usage", 9009).settings( libraryDependencies ++= Seq( - "com.gu" %% "content-api-client-default" % "32.0.0" exclude("org.slf4j","slf4j-api"), // slf4j exclusion can be removed when we upgrade to SLFJ v2 - "com.gu" %% "content-api-client-aws" % "0.7.6" exclude("org.slf4j","slf4j-api"), // slf4j exclusion can be removed when we upgrade to SLFJ v2 + "com.gu" %% "content-api-client-default" % "32.0.0", + "com.gu" %% "content-api-client-aws" % "0.7.6", "io.reactivex" %% "rxscala" % "0.27.0", "com.amazonaws" % "amazon-kinesis-client" % "1.8.10", "com.google.protobuf" % "protobuf-java" % "3.19.6"