Skip to content

Commit

Permalink
do not bundle test dependencies with jar.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Apr 5, 2022
1 parent 385748d commit 06b78c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ libraryDependencies ++= Seq(
"com.github.alexarchambault" % "case-app_2.13" % "2.1.0-M13", // cliche
"com.lihaoyi" % "requests_2.13" % "0.7.0", // cliche
"com.iheart" % "ficus_2.13" % "1.5.0", // cliche
"org.xerial" % "sqlite-jdbc" % "3.27.2.1", // cliche

// testing
"org.scalatest" % "scalatest_2.13" % "3.1.1",
"com.typesafe.akka" % "akka-testkit_2.13" % "2.6.9",
"org.xerial" % "sqlite-jdbc" % "3.27.2.1"
"org.scalatest" % "scalatest_2.13" % "3.1.1" % Test,
"com.typesafe.akka" % "akka-testkit_2.13" % "2.6.9" % Test
)
assemblyMergeStrategy := {
case x if x.endsWith("module-info.class") => MergeStrategy.discard
Expand Down

0 comments on commit 06b78c3

Please sign in to comment.