Skip to content

Commit 61ff82a

Browse files
committed
Adjusted for 3.3.0.0-RC1.
1 parent 80dfe30 commit 61ff82a

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ 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 JMock 2.13.x:
17+
To use it for ScalaTest 3.3.0.0-RC1 and JMock 2.13.x:
1818

1919
SBT:
2020

2121
```
22-
libraryDependencies += "org.scalatestplus" %% "jmock-2-13" % "3.2.19.0" % "test"
22+
libraryDependencies += "org.scalatestplus" %% "jmock-2-13" % "3.3.0.0-RC1" % "test"
2323
```
2424

2525
Maven:
@@ -28,7 +28,7 @@ Maven:
2828
<dependency>
2929
<groupId>org.scalatestplus</groupId>
3030
<artifactId>jmock-2-13_3</artifactId>
31-
<version>3.2.19.0</version>
31+
<version>3.3.0.0-RC1</version>
3232
<scope>test</scope>
3333
</dependency>
3434
```
@@ -39,4 +39,5 @@ Please use the following commands to publish to Sonatype:
3939

4040
```
4141
$ sbt +publishSigned
42+
$ sbt sonaUpload
4243
```

build.sbt

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "jmock-2.13"
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-jmock"))
1111

@@ -26,17 +26,17 @@ developers := List(
2626
)
2727
)
2828

29-
scalaVersion := "2.13.13"
29+
scalaVersion := "2.13.16"
3030

31-
crossScalaVersions := List("2.11.12", "2.12.19", "2.13.13", "3.3.3")
31+
crossScalaVersions := List("2.11.12", "2.12.20", "2.13.16", "3.3.6")
3232

3333
libraryDependencies ++= Seq(
3434
"org.jmock" % "jmock-legacy" % "2.13.1",
35-
"org.scalatest" %% "scalatest-core" % "3.2.19",
36-
"org.scalatest" %% "scalatest-flatspec" % "3.2.19" % "test",
37-
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test",
38-
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % "test",
39-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % "test"
35+
"org.scalatest" %% "scalatest-core" % "3.3.0-RC1",
36+
"org.scalatest" %% "scalatest-flatspec" % "3.3.0-RC1" % "test",
37+
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-RC1" % "test",
38+
"org.scalatest" %% "scalatest-funspec" % "3.3.0-RC1" % "test",
39+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-RC1" % "test"
4040
)
4141

4242
enablePlugins(SbtOsgi)
@@ -61,10 +61,7 @@ OsgiKeys.additionalHeaders:= Map(
6161
"Bundle-Vendor" -> "Artima, Inc."
6262
)
6363

64-
publishTo := {
65-
val nexus = "https://oss.sonatype.org/"
66-
Some("publish-releases" at nexus + "service/local/staging/deploy/maven2")
67-
}
64+
publishTo := localStaging.value
6865

6966
publishMavenStyle := true
7067

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)