Skip to content

Commit 2575cf2

Browse files
committed
Updated to ScalaTest 3.2.19.
1 parent 00fde3b commit 2575cf2

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ ScalaTest + JMock provides integration support between ScalaTest and JMock.
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.18 and JMock 2.13.x:
6+
To use it for ScalaTest 3.2.19 and JMock 2.13.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "jmock-2-13" % "3.2.18.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "jmock-2-13" % "3.2.19.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>jmock-2-13_3</artifactId>
20-
<version>3.2.18.0</version>
20+
<version>3.2.19.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "jmock-2.13"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.18.0"
8+
version := "3.2.19.0"
99

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

@@ -26,17 +26,17 @@ developers := List(
2626
)
2727
)
2828

29-
scalaVersion := "2.13.12"
29+
scalaVersion := "2.13.13"
3030

31-
crossScalaVersions := List("2.11.12", "2.12.18", "2.13.12", "3.3.1")
31+
crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3")
3232

3333
libraryDependencies ++= Seq(
3434
"org.jmock" % "jmock-legacy" % "2.13.1",
35-
"org.scalatest" %% "scalatest-core" % "3.2.18",
36-
"org.scalatest" %% "scalatest-flatspec" % "3.2.18" % "test",
37-
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test",
38-
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % "test",
39-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.18" % "test"
35+
"org.scalatest" %% "scalatest-core" % "3.2.19",
36+
"org.scalatest" %% "scalatest-flatspec" % "3.2.19" % "test",
37+
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test",
38+
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % "test",
39+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % "test"
4040
)
4141

4242
enablePlugins(SbtOsgi)

0 commit comments

Comments
 (0)