From 7321d56739d0059d6a91ee651dd6dc36590c3208 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Sat, 22 Aug 2020 10:25:06 +0800 Subject: [PATCH] Updated to use ScalaTest 3.2.2. --- build.sbt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index cf5c599..f32ed06 100644 --- a/build.sbt +++ b/build.sbt @@ -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( @@ -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) =>