Skip to content

Update scalatest to 3.2.11 #210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
11 changes: 7 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lazy val V = new {
val scalacheckShapeless: String = "1.3.0"
val scalamacros: String = "2.1.1"
val scalariform: String = "0.2.10"
val scalatest: String = "3.2.10"
val scalatest: String = "3.2.11"
}

lazy val definitions = (project in file("definitions"))
Expand All @@ -36,7 +36,8 @@ lazy val definitions = (project in file("definitions"))
"org.scalatest" %% "scalatest" % V.scalatest,
"org.scalacheck" %% "scalacheck" % V.scalacheck,
"com.github.alexarchambault" %% "scalacheck-shapeless_1.15" % V.scalacheckShapeless
)
),
dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "1.3.0"
)

lazy val compiler = (project in file("compiler"))
Expand All @@ -56,7 +57,8 @@ lazy val compiler = (project in file("compiler"))
"org.scalariform" %% "scalariform" % V.scalariform,
"org.typelevel" %% "cats-laws" % V.cats % Test,
"org.scalatest" %% "scalatest" % V.scalatest % Test
)
),
dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "1.3.0"
)
.dependsOn(definitions)

Expand All @@ -78,7 +80,8 @@ lazy val `sbt-exercise` = (project in file("sbt-exercise"))
BuildInfoKey.map(compilerClasspath) { case (_, classFiles) ⇒
("compilerClasspath", classFiles.map(_.data))
}
)
),
dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "1.3.0"
)
.settings(
scriptedLaunchOpts := {
Expand Down