Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val scala2 = List(scala2_12, scala2_13)
val scala3 = List("3.3.8")

val scalaTestVersion = "3.2.20"
val scalaTestPlusScalaCheckVersion = "3.2.19.0"
val scalaTestPlusScalaCheckVersion = "3.2.20.0"

excludeLintKeys in Global ++= Set(ideSkipProject)

Expand All @@ -28,7 +28,7 @@ val commonJvmSettings = commonSettings ++ Seq(
ideSkipProject := (scalaVersion.value != scala2_13),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % scalaTestVersion % Test,
"org.scalatestplus" %% "scalacheck-1-18" % scalaTestPlusScalaCheckVersion % Test
"org.scalatestplus" %% "scalacheck-1-19" % scalaTestPlusScalaCheckVersion % Test
),
mimaPreviousArtifacts := previousStableVersion.value.map(organization.value %% moduleName.value % _).toSet,
mimaReportBinaryIssues := { if ((publish / skip).value) {} else mimaReportBinaryIssues.value }
Expand All @@ -53,15 +53,15 @@ val commonJsSettings = commonSettings ++ Seq(
libraryDependencies ++= Seq(
"org.scala-js" %%% "scalajs-dom" % "2.8.1",
"org.scalatest" %%% "scalatest" % scalaTestVersion % Test,
"org.scalatestplus" %%% "scalacheck-1-18" % scalaTestPlusScalaCheckVersion % Test
"org.scalatestplus" %%% "scalacheck-1-19" % scalaTestPlusScalaCheckVersion % Test
)
)

val commonNativeSettings = commonSettings ++ Seq(
ideSkipProject := true,
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest" % scalaTestVersion % Test,
"org.scalatestplus" %%% "scalacheck-1-18" % scalaTestPlusScalaCheckVersion % Test
"org.scalatestplus" %%% "scalacheck-1-19" % scalaTestPlusScalaCheckVersion % Test
)
)

Expand Down
Loading