From 038feb90501c52809383ff9ccd45d591bc5b5a1a Mon Sep 17 00:00:00 2001 From: Andrew Nowak Date: Mon, 4 Nov 2024 16:44:15 +0000 Subject: [PATCH 1/2] remove outdated libthrift dependencyOverride only common-lib depends on libthrift, I think this override was copied accidentally, and then not bumped when common-lib's was --- build.sbt | 2 -- 1 file changed, 2 deletions(-) diff --git a/build.sbt b/build.sbt index 9341746b60..1977d19285 100644 --- a/build.sbt +++ b/build.sbt @@ -120,8 +120,6 @@ lazy val restLib = project("rest-lib").settings( "com.typesafe.play" %% "filters-helpers" % "2.8.11", akkaHttpServer, ), - - dependencyOverrides += "org.apache.thrift" % "libthrift" % "0.9.1" ).dependsOn(commonLib % "compile->compile;test->test") lazy val auth = playProject("auth", 9011) From f8207642d1cfd260059baf2305e16c0af13eb80c Mon Sep 17 00:00:00 2001 From: Andrew Nowak Date: Mon, 4 Nov 2024 16:48:14 +0000 Subject: [PATCH 2/2] remove the other libthrift dependencyOverride libs now bring in uptodate libthrift, no need for override --- build.sbt | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1977d19285..96b13e9472 100644 --- a/build.sbt +++ b/build.sbt @@ -110,7 +110,6 @@ lazy val commonLib = project("common-lib").settings( "org.yaml" % "snakeyaml" % "1.31", "org.testcontainers" % "elasticsearch" % "1.19.2" % Test ), - dependencyOverrides += "org.apache.thrift" % "libthrift" % "0.13.0", dependencyOverrides += "ch.qos.logback" % "logback-classic" % "1.2.13" % Test )