Skip to content

Commit 3f9bcf7

Browse files
committed
Adjusted for 3.3.0.0-RC1 release.
1 parent 60bf590 commit 3f9bcf7

File tree

4 files changed

+14
-17
lines changed

4 files changed

+14
-17
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 JUnit 4.13:
17+
To use it for ScalaTest 3.3.0-RC1 and JUnit 4.13:
1818

1919
SBT:
2020

2121
```
22-
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.19.1" % "test"
22+
libraryDependencies += "org.scalatestplus" %% "junit-4-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>junit-4-13_3</artifactId>
31-
<version>3.2.19.1</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: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "junit-4.13"
55

66
organization := "org.scalatestplus"
77

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

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

@@ -32,7 +32,7 @@ crossScalaVersions := List(
3232
"2.11.12",
3333
"2.12.20",
3434
"2.13.16",
35-
"3.3.5"
35+
"3.3.6"
3636
)
3737

3838
/** Add src/main/scala-{2|3} to Compile / unmanagedSourceDirectories */
@@ -45,12 +45,12 @@ Compile / unmanagedSourceDirectories ++= {
4545
}
4646

4747
libraryDependencies ++= Seq(
48-
"org.scalatest" %% "scalatest-core" % "3.2.19",
48+
"org.scalatest" %% "scalatest-core" % "3.3.0-RC1",
4949
"junit" % "junit" % "4.13.2",
50-
"org.scalatest" %% "scalatest-wordspec" % "3.2.19" % "test",
51-
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % "test",
52-
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test",
53-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % "test"
50+
"org.scalatest" %% "scalatest-wordspec" % "3.3.0-RC1" % "test",
51+
"org.scalatest" %% "scalatest-funspec" % "3.3.0-RC1" % "test",
52+
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-RC1" % "test",
53+
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-RC1" % "test"
5454
)
5555

5656
import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}
@@ -97,10 +97,7 @@ OsgiKeys.additionalHeaders:= Map(
9797
"Bundle-Vendor" -> "Artima, Inc."
9898
)
9999

100-
publishTo := {
101-
val nexus = "https://oss.sonatype.org/"
102-
Some("publish-releases" at nexus + "service/local/staging/deploy/maven2")
103-
}
100+
publishTo := localStaging.value
104101

105102
publishMavenStyle := true
106103

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

src/main/scala/org/scalatestplus/junit/JUnitRunner.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ final class JUnitRunner(suiteClass: java.lang.Class[_ <: Suite]) extends org.jun
120120
filter,
121121
ConfigMap.empty,
122122
None,
123-
new Tracker,
124-
Set.empty
123+
new Tracker
125124
)
126125
)
127126
} catch {

0 commit comments

Comments
 (0)