Skip to content

Commit

Permalink
Updated to scalatest 3.2.14.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Sep 28, 2022
1 parent c2bdbad commit ef6d1de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ScalaTest + Mockito provides integration support between ScalaTest and Mockito.

**Usage**

To use it for ScalaTest 3.2.13 and Mockito 4.6.x:
To use it for ScalaTest 3.2.14 and Mockito 4.6.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "mockito-4-6" % "3.2.13.0" % "test"
libraryDependencies += "org.scalatestplus" %% "mockito-4-6" % "3.2.14.0" % "test"
```

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>mockito-4-6_2.13</artifactId>
<version>3.2.13.0</version>
<version>3.2.14.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "mockito-4.6"

organization := "org.scalatestplus"

version := "3.2.13.0"
version := "3.2.14.0"

homepage := Some(url("https://github.com/scalatest/scalatestplus-mockito"))

Expand Down Expand Up @@ -34,8 +34,8 @@ crossScalaVersions := List("2.10.7", "2.11.12", "2.12.16", "2.13.8", "3.1.3")

libraryDependencies ++= Seq(
"org.mockito" % "mockito-core" % "4.6.1",
"org.scalatest" %% "scalatest-core" % "3.2.13",
"org.scalatest" %% "scalatest-funsuite" % "3.2.13" % "test"
"org.scalatest" %% "scalatest-core" % "3.2.14",
"org.scalatest" %% "scalatest-funsuite" % "3.2.14" % "test"
)

import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}
Expand Down

0 comments on commit ef6d1de

Please sign in to comment.