Skip to content

Commit 2cb83c3

Browse files
committed
Updated for 3.3.0.0-RC1 release.
1 parent a45818e commit 2cb83c3

File tree

3 files changed

+16
-18
lines changed

3 files changed

+16
-18
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 EasyMock 5.3.x:
17+
To use it for ScalaTest 3.3.0-RC1 and EasyMock 5.6.x:
1818

1919
SBT:
2020

2121
```
22-
libraryDependencies += "org.scalatestplus" %% "easymock-5-3" % "3.2.19.0" % "test"
22+
libraryDependencies += "org.scalatestplus" %% "easymock-5-6" % "3.3.0.0-RC1" % "test"
2323
```
2424

2525
Maven:
2626

2727
```
2828
<dependency>
2929
<groupId>org.scalatestplus</groupId>
30-
<artifactId>easymock-5-3_3</artifactId>
31-
<version>3.2.19.0</version>
30+
<artifactId>easymock-5-6_3</artifactId>
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: 10 additions & 13 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 := "easymock-5.3"
4+
name := "easymock-5.6"
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-easymock"))
1111

@@ -26,18 +26,18 @@ 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
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
3434

3535
libraryDependencies ++= Seq(
36-
"org.easymock" % "easymock" % "5.3.0",
37-
"org.scalatest" %% "scalatest-core" % "3.2.19",
38-
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test",
39-
"org.scalatest" %% "scalatest-flatspec" % "3.2.19" % "test",
40-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % "test"
36+
"org.easymock" % "easymock" % "5.6.0",
37+
"org.scalatest" %% "scalatest-core" % "3.3.0-RC1",
38+
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-RC1" % "test",
39+
"org.scalatest" %% "scalatest-flatspec" % "3.3.0-RC1" % "test",
40+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-RC1" % "test"
4141
)
4242

4343
import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}
@@ -78,10 +78,7 @@ OsgiKeys.additionalHeaders:= Map(
7878
"Bundle-Vendor" -> "Artima, Inc."
7979
)
8080

81-
publishTo := {
82-
val nexus = "https://oss.sonatype.org/"
83-
Some("publish-releases" at nexus + "service/local/staging/deploy/maven2")
84-
}
81+
publishTo := localStaging.value
8582

8683
publishMavenStyle := true
8784

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)