Skip to content

Commit

Permalink
Updated to ScalaTest 3.2.18.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Feb 5, 2024
1 parent 41d2486 commit 8486571
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@

**Usage**

To use it for ScalaTest 3.2.17 and EasyMock 5.1.x:
To use it for ScalaTest 3.2.18 and EasyMock 5.2.x:

SBT:

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

Maven:

```
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>easymock-5-1_2.13</artifactId>
<version>3.2.17.0</version>
<artifactId>easymock-5-2_2.13</artifactId>
<version>3.2.18.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "easymock-5.2"

organization := "org.scalatestplus"

version := "3.3.0.0-alpha.1"
version := "3.2.18.0"

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

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

libraryDependencies ++= Seq(
"org.easymock" % "easymock" % "5.2.0",
"org.scalatest" %% "scalatest-core" % "3.3.0-alpha.1",
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-alpha.1" % "test",
"org.scalatest" %% "scalatest-flatspec" % "3.3.0-alpha.1" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-alpha.1" % "test"
"org.scalatest" %% "scalatest-core" % "3.2.18",
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-flatspec" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.18" % "test"
)

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

0 comments on commit 8486571

Please sign in to comment.