From edc91edd1a06f2d5b1eb685ab419cd2f0b6fcf5c Mon Sep 17 00:00:00 2001 From: Hubert Plociniczak Date: Sat, 27 Apr 2024 22:18:07 +0200 Subject: [PATCH] Compile-time `shapeless` in `runtime-compiler` Marking the `shapeless` dependency as compile-time only. --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 74ce47e86e37..5cbbbd421b75 100644 --- a/build.sbt +++ b/build.sbt @@ -1962,7 +1962,7 @@ lazy val `runtime-compiler` = frgaalJavaCompilerSetting, (Test / fork) := true, libraryDependencies ++= Seq( - "com.chuusai" %% "shapeless" % shapelessVersion, + "com.chuusai" %% "shapeless" % shapelessVersion % "provided", "junit" % "junit" % junitVersion % Test, "com.github.sbt" % "junit-interface" % junitIfVersion % Test, "org.scalatest" %% "scalatest" % scalatestVersion % Test,