Skip to content

Commit 20f1cf4

Browse files
committed
Adjusted for 3.3.0.0-RC1 release.
1 parent c3f04a7 commit 20f1cf4

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ If ScalaTest has saved you time, helped you ship better software, or become a ke
1414

1515
**Usage**
1616

17-
To use it for ScalaTest 3.2.19 and Mockito 5.18.x:
17+
To use it for ScalaTest 3.3.0-RC1 and Mockito 5.19.x:
1818

1919
SBT:
2020

2121
```
22-
libraryDependencies += "org.scalatestplus" %% "mockito-5-18" % "3.2.19.0" % "test"
22+
libraryDependencies += "org.scalatestplus" %% "mockito-5-19" % "3.3.0.0-RC1" % "test"
2323
```
2424

2525
Maven:
2626

2727
```
2828
<dependency>
2929
<groupId>org.scalatestplus</groupId>
30-
<artifactId>mockito-5-18_3</artifactId>
31-
<version>3.2.19.0</version>
30+
<artifactId>mockito-5-19_3</artifactId>
31+
<version>3.3.0.0-RC1</version>
3232
<scope>test</scope>
3333
</dependency>
3434
```
@@ -42,4 +42,5 @@ Please use the following commands to publish to Sonatype:
4242

4343
```
4444
$ sbt +publishSigned
45+
$ sbt sonaUpload
4546
```

build.sbt

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import java.io.PrintWriter
22
import scala.io.Source
33

4-
name := "mockito-5.18"
4+
name := "mockito-5.19"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.19.0"
8+
version := "3.3.0.0-RC1"
99

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

@@ -30,12 +30,12 @@ developers := List(
3030

3131
scalaVersion := "2.13.16"
3232

33-
crossScalaVersions := List("2.10.7", "2.11.12", "2.12.20", "2.13.16", "3.3.6")
33+
crossScalaVersions := List("2.11.12", "2.12.20", "2.13.16", "3.3.6")
3434

3535
libraryDependencies ++= Seq(
36-
"org.mockito" % "mockito-core" % "5.18.0",
37-
"org.scalatest" %% "scalatest-core" % "3.2.19",
38-
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test"
36+
"org.mockito" % "mockito-core" % "5.19.0",
37+
"org.scalatest" %% "scalatest-core" % "3.3.0-RC1",
38+
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-RC1" % "test"
3939
)
4040

4141
import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}
@@ -83,10 +83,7 @@ OsgiKeys.additionalHeaders := Map(
8383
"Bundle-Vendor" -> "Artima, Inc."
8484
)
8585

86-
publishTo := {
87-
val nexus = "https://oss.sonatype.org/"
88-
Some("publish-releases" at nexus + "service/local/staging/deploy/maven2")
89-
}
86+
publishTo := localStaging.value
9087

9188
publishMavenStyle := true
9289

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.8
1+
sbt.version=1.11.4

0 commit comments

Comments
 (0)