Skip to content

Commit

Permalink
Updated to use ScalaTest 3.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Aug 22, 2020
1 parent 235840a commit 7321d56
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import scala.xml.transform.{RewriteRule, RuleTransformer}
val sharedSettings = Seq(
name := "scalacheck-1.14",
organization := "org.scalatestplus",
version := "3.2.2.0-M2",
version := "3.2.2.0",
homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Expand All @@ -25,11 +25,11 @@ val sharedSettings = Seq(
),
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"org.scalatest" %%% "scalatest-core" % "3.2.2-M2",
"org.scalatest" %%% "scalatest-core" % "3.2.2",
("org.scalacheck" %%% "scalacheck" % "1.14.3").withDottyCompat(scalaVersion.value),
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.2-M2" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.2-M2" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.2-M2" % "test"
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.2" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.2" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.2" % "test"
),
// skip dependency elements with a scope
pomPostProcess := { (node: XmlNode) =>
Expand Down

0 comments on commit 7321d56

Please sign in to comment.