Skip to content

Commit

Permalink
Bumped up versions for ScalaTest 3.2.17.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Sep 7, 2023
1 parent 317119a commit 312f2ad
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

**Usage**

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

SBT:

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

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

organization := "org.scalatestplus"

version := "3.2.16.0"
version := "3.2.17.0"

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

Expand All @@ -26,18 +26,18 @@ developers := List(
)
)

scalaVersion := "2.13.10"
scalaVersion := "2.13.11"

crossScalaVersions := List("2.11.12", "2.12.17", "2.13.10", "3.1.3")
crossScalaVersions := List("2.11.12", "2.12.17", "2.13.11", "3.1.3")

resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies ++= Seq(
"org.easymock" % "easymock" % "5.1.0",
"org.scalatest" %% "scalatest-core" % "3.2.16",
"org.scalatest" %% "scalatest-funsuite" % "3.2.16" % "test",
"org.scalatest" %% "scalatest-flatspec" % "3.2.16" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.16" % "test"
"org.scalatest" %% "scalatest-core" % "3.2.17",
"org.scalatest" %% "scalatest-funsuite" % "3.2.17" % "test",
"org.scalatest" %% "scalatest-flatspec" % "3.2.17" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.17" % "test"
)

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

0 comments on commit 312f2ad

Please sign in to comment.