From e3ef3bdba3df650522dfbfe6e8b7255c3c355b23 Mon Sep 17 00:00:00 2001 From: Tomoyuki Morita Date: Wed, 13 Nov 2024 10:01:38 -0800 Subject: [PATCH] Scope library dependency to test Signed-off-by: Tomoyuki Morita --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 21fb345cc..bc8950ff6 100644 --- a/build.sbt +++ b/build.sbt @@ -57,7 +57,7 @@ lazy val commonSettings = Seq( Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-h", s"target/test-reports/${name.value}"), Test / test := ((Test / test) dependsOn testScalastyle).value, // Needed for HTML report - libraryDependencies += "com.vladsch.flexmark" % "flexmark-all" % "0.64.8", + libraryDependencies += "com.vladsch.flexmark" % "flexmark-all" % "0.64.8" % "test", dependencyOverrides ++= Seq( "com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion, "com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion