From 5e2e2965d094e3422548affd4ed26d5b61f9a142 Mon Sep 17 00:00:00 2001 From: Adrien Piquerez Date: Wed, 9 Oct 2024 12:13:42 +0200 Subject: [PATCH] Fix internal dependency to lmCoursier --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 23a0520f7..47e076f8f 100644 --- a/build.sbt +++ b/build.sbt @@ -944,7 +944,7 @@ lazy val mainProj = (project in file("main")) // mimaSettings, // mimaBinaryIssueFilters ++= Vector(), ) - .dependsOn(lmCore, lmIvy, lmCoursierShaded) + .dependsOn(lmCore, lmIvy, lmCoursierShadedPublishing) .configure(addSbtIO, addSbtCompilerInterface, addSbtZincCompileCore) // Strictly for bringing implicits and aliases from subsystems into the top-level sbt namespace through a single package object @@ -1519,8 +1519,10 @@ lazy val lmCoursier = project lazy val lmCoursierShadedPublishing = project .in(file("lm-coursier/target/shaded-publishing-module")) .settings( + scalaVersion := scala3, name := "librarymanagement-coursier", Compile / packageBin := (lmCoursierShaded / assembly).value, + Compile / exportedProducts := Seq(Attributed.blank((Compile / packageBin).value)) ) lazy val lmCoursierShaded = project