diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec8fcfb..cb7992d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,5 +13,7 @@ jobs: with: distribution: temurin java-version: 11 + - name: Setup sbt + uses: sbt/setup-sbt@v1 - name: Build and Test run: sbt -v +test diff --git a/README.md b/README.md index b800416..a12209a 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ If ScalaTest has saved you time, helped you ship better software, or become a ke **Usage** -To use it for ScalaTest 3.2.19 and Mockito 5.14.x: +To use it for ScalaTest 3.2.19 and Mockito 5.18.x: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "mockito-5-14" % "3.2.19.0" % "test" +libraryDependencies += "org.scalatestplus" %% "mockito-5-18" % "3.2.19.0" % "test" ``` Maven: @@ -27,7 +27,7 @@ Maven: ``` org.scalatestplus - mockito-5-14_3 + mockito-5-18_3 3.2.19.0 test diff --git a/build.sbt b/build.sbt index 056cef7..ec77aa1 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import java.io.PrintWriter import scala.io.Source -name := "mockito-5.14" +name := "mockito-5.18" organization := "org.scalatestplus" @@ -28,12 +28,12 @@ developers := List( ) ) -scalaVersion := "2.13.13" +scalaVersion := "2.13.16" -crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3") +crossScalaVersions := List("2.11.12", "2.12.20", "2.13.16", "3.3.6") libraryDependencies ++= Seq( - "org.mockito" % "mockito-core" % "5.14.2", + "org.mockito" % "mockito-core" % "5.18.0", "org.scalatest" %% "scalatest-core" % "3.2.19", "org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test" )