Skip to content

Commit 8486571

Browse files
committed
Updated to ScalaTest 3.2.18.
1 parent 41d2486 commit 8486571

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.17 and EasyMock 5.1.x:
6+
To use it for ScalaTest 3.2.18 and EasyMock 5.2.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "easymock-5-1" % "3.2.17.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "easymock-5-2" % "3.2.18.0" % "test"
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>easymock-5-1_2.13</artifactId>
20-
<version>3.2.17.0</version>
19+
<artifactId>easymock-5-2_2.13</artifactId>
20+
<version>3.2.18.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

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

66
organization := "org.scalatestplus"
77

8-
version := "3.3.0.0-alpha.1"
8+
version := "3.2.18.0"
99

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

@@ -34,10 +34,10 @@ resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repos
3434

3535
libraryDependencies ++= Seq(
3636
"org.easymock" % "easymock" % "5.2.0",
37-
"org.scalatest" %% "scalatest-core" % "3.3.0-alpha.1",
38-
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-alpha.1" % "test",
39-
"org.scalatest" %% "scalatest-flatspec" % "3.3.0-alpha.1" % "test",
40-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-alpha.1" % "test"
37+
"org.scalatest" %% "scalatest-core" % "3.2.18",
38+
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test",
39+
"org.scalatest" %% "scalatest-flatspec" % "3.2.18" % "test",
40+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.18" % "test"
4141
)
4242

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

0 commit comments

Comments
 (0)