Skip to content

Commit 5906e08

Browse files
committed
Upgraded to mockito 5.18
1 parent cc8440f commit 5906e08

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ If ScalaTest has saved you time, helped you ship better software, or become a ke
1414

1515
**Usage**
1616

17-
To use it for ScalaTest 3.2.19 and Mockito 5.14.x:
17+
To use it for ScalaTest 3.2.19 and Mockito 5.18.x:
1818

1919
SBT:
2020

2121
```
22-
libraryDependencies += "org.scalatestplus" %% "mockito-5-14" % "3.2.19.0" % "test"
22+
libraryDependencies += "org.scalatestplus" %% "mockito-5-18" % "3.2.19.0" % "test"
2323
```
2424

2525
Maven:
2626

2727
```
2828
<dependency>
2929
<groupId>org.scalatestplus</groupId>
30-
<artifactId>mockito-5-14_3</artifactId>
30+
<artifactId>mockito-5-18_3</artifactId>
3131
<version>3.2.19.0</version>
3232
<scope>test</scope>
3333
</dependency>

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import java.io.PrintWriter
22
import scala.io.Source
33

4-
name := "mockito-5.14"
4+
name := "mockito-5.18"
55

66
organization := "org.scalatestplus"
77

@@ -33,7 +33,7 @@ scalaVersion := "2.13.13"
3333
crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3")
3434

3535
libraryDependencies ++= Seq(
36-
"org.mockito" % "mockito-core" % "5.14.2",
36+
"org.mockito" % "mockito-core" % "5.18.0",
3737
"org.scalatest" %% "scalatest-core" % "3.2.19",
3838
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test"
3939
)

0 commit comments

Comments
 (0)