From 3f8bad5432caa3bcc77af6b70ac95ed753b967ef Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Fri, 12 May 2023 17:54:33 +0800 Subject: [PATCH] Bumped up scalatest version to 3.2.16.0. --- README.md | 6 +++--- build.sbt | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3ddbb40..2f4bd6e 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,12 @@ ScalaTest + JUnit provides integration support between ScalaTest and JUnit. **Usage** -To use it for ScalaTest 3.2.15 and JUnit 4.13: +To use it for ScalaTest 3.2.16 and JUnit 4.13: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.15.0" % "test" +libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.16.0" % "test" ``` Maven: @@ -17,7 +17,7 @@ Maven: org.scalatestplus junit-4-13_2.13 - 3.2.15.0 + 3.2.16.0 test ``` diff --git a/build.sbt b/build.sbt index f8d020d..119180f 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ name := "junit-4.13" organization := "org.scalatestplus" -version := "3.2.15.0" +version := "3.2.16.0" homepage := Some(url("https://github.com/scalatest/scalatestplus-junit")) @@ -46,12 +46,12 @@ Compile / unmanagedSourceDirectories ++= { } libraryDependencies ++= Seq( - "org.scalatest" %% "scalatest-core" % "3.2.15", + "org.scalatest" %% "scalatest-core" % "3.2.16", "junit" % "junit" % "4.13.2", - "org.scalatest" %% "scalatest-wordspec" % "3.2.15" % "test", - "org.scalatest" %% "scalatest-funspec" % "3.2.15" % "test", - "org.scalatest" %% "scalatest-funsuite" % "3.2.15" % "test", - "org.scalatest" %% "scalatest-shouldmatchers" % "3.2.15" % "test" + "org.scalatest" %% "scalatest-wordspec" % "3.2.16" % "test", + "org.scalatest" %% "scalatest-funspec" % "3.2.16" % "test", + "org.scalatest" %% "scalatest-funsuite" % "3.2.16" % "test", + "org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % "test" ) import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}