Skip to content

Commit

Permalink
Bumped up versions for 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 9a995e0 commit 970192d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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 @@ ScalaTest + JMock provides integration support between ScalaTest and JMock.

**Usage**

To use it for ScalaTest 3.2.17 and JMock 2.12.x:
To use it for ScalaTest 3.2.18 and JMock 2.12.x:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "jmock-2-12" % "3.2.17.0" % "test"
libraryDependencies += "org.scalatestplus" %% "jmock-2-12" % "3.2.18.0" % "test"
```

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

organization := "org.scalatestplus"

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

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

Expand All @@ -32,11 +32,11 @@ crossScalaVersions := List("2.11.12", "2.12.18", "2.13.12", "3.3.1")

libraryDependencies ++= Seq(
"org.jmock" % "jmock-legacy" % "2.12.0",
"org.scalatest" %% "scalatest-core" % "3.3.0-alpha.1",
"org.scalatest" %% "scalatest-flatspec" % "3.3.0-alpha.1" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-alpha.1" % "test",
"org.scalatest" %% "scalatest-funspec" % "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-flatspec" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.18" % "test"
)

enablePlugins(SbtOsgi)
Expand Down

0 comments on commit 970192d

Please sign in to comment.