Skip to content

Commit

Permalink
Bumped up to the latest Mockito 5.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Dec 15, 2023
1 parent 02175aa commit f4edd78
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ ScalaTest + Mockito provides integration support between ScalaTest and Mockito.

**Usage**

To use it for ScalaTest 3.2.17 and Mockito 5.6.x:
To use it for ScalaTest 3.2.17 and Mockito 5.8.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "mockito-5-6" % "3.2.17.0" % "test"
libraryDependencies += "org.scalatestplus" %% "mockito-5-8" % "3.2.17.0" % "test"
```

Maven:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>mockito-5-6_3</artifactId>
<artifactId>mockito-5-8_3</artifactId>
<version>3.2.17.0</version>
<scope>test</scope>
</dependency>
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.io.PrintWriter
import scala.io.Source

name := "mockito-5.6"
name := "mockito-5.8"

organization := "org.scalatestplus"

Expand All @@ -28,12 +28,12 @@ developers := List(
)
)

scalaVersion := "2.13.11"
scalaVersion := "2.13.12"

crossScalaVersions := List("2.10.7", "2.11.12", "2.12.18", "2.13.11", "3.1.3")
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.18", "2.13.12", "3.1.3")

libraryDependencies ++= Seq(
"org.mockito" % "mockito-core" % "5.6.0",
"org.mockito" % "mockito-core" % "5.8.0",
"org.scalatest" %% "scalatest-core" % "3.2.17",
"org.scalatest" %% "scalatest-funsuite" % "3.2.17" % "test"
)
Expand Down

0 comments on commit f4edd78

Please sign in to comment.