From 64d0a8b7af32c3b80d5b1be69686bb8d993bcfbc Mon Sep 17 00:00:00 2001 From: Frank Thomas Date: Sun, 5 Jan 2025 15:21:37 +0100 Subject: [PATCH] Work around https://github.com/cb372/sbt-explicit-dependencies/issues/117 --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 18a7705a42..004dd428be 100644 --- a/build.sbt +++ b/build.sbt @@ -242,7 +242,9 @@ lazy val core = myCrossProject("core") outFile } Seq(downloadPlugin("1_0_0"), downloadPlugin("1_3_11")) - }.taskValue + }.taskValue, + unusedCompileDependenciesFilter -= + moduleFilter(organization = Dependencies.coursierCore.organization) ) lazy val docs = myCrossProject("docs")