Skip to content

Commit

Permalink
Merge pull request #418 from kaharlichenko/feature/narrow-down-scalat…
Browse files Browse the repository at this point in the history
…est-deps

Limit ScalaTest dependency to its core library
  • Loading branch information
djspiewak authored Feb 22, 2023
2 parents 184e9d0 + 76c1acd commit 0cd8fb4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ThisBuild / tlCiReleaseBranches := Seq("series/1.x")
ThisBuild / tlSonatypeUseLegacyHost := false

val CatsEffectVersion = "3.4.8"
val ScalaTestVersion = "3.2.15"

lazy val root = tlCrossRootProject
.aggregate(core, specs2, utest, minitest, scalatest)
Expand Down Expand Up @@ -54,7 +55,11 @@ lazy val scalatest = crossProject(JSPlatform, JVMPlatform, NativePlatform)
name := "cats-effect-testing-scalatest",

libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest" % "3.2.15"))
"org.scalatest" %%% "scalatest-core" % ScalaTestVersion,
"org.scalatest" %%% "scalatest-shouldmatchers" % ScalaTestVersion % Test,
"org.scalatest" %%% "scalatest-mustmatchers" % ScalaTestVersion % Test,
"org.scalatest" %%% "scalatest-freespec" % ScalaTestVersion % Test,
"org.scalatest" %%% "scalatest-wordspec" % ScalaTestVersion % Test))
.nativeSettings(tlVersionIntroduced := List("2.12", "2.13", "3").map(_ -> "1.5.0").toMap)

lazy val utest = crossProject(JSPlatform, JVMPlatform, NativePlatform)
Expand Down

0 comments on commit 0cd8fb4

Please sign in to comment.