Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 JUnit 4.13:
To use it for ScalaTest 3.3.0-RC1 and JUnit 4.13:

SBT:

```
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.19.1" % "test"
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.3.0.0-RC1" % "test"
```

Maven:
Expand All @@ -28,7 +28,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-4-13_3</artifactId>
<version>3.2.19.1</version>
<version>3.3.0.0-RC1</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -39,4 +39,5 @@ Please use the following commands to publish to Sonatype:

```
$ sbt +publishSigned
$ sbt sonaUpload
```
19 changes: 8 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name := "junit-4.13"

organization := "org.scalatestplus"

version := "3.2.19.1"
version := "3.3.0.0-RC1"

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

Expand All @@ -32,7 +32,7 @@ crossScalaVersions := List(
"2.11.12",
"2.12.20",
"2.13.16",
"3.3.5"
"3.3.6"
)

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

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest-core" % "3.2.19",
"org.scalatest" %% "scalatest-core" % "3.3.0-RC1",
"junit" % "junit" % "4.13.2",
"org.scalatest" %% "scalatest-wordspec" % "3.2.19" % "test",
"org.scalatest" %% "scalatest-funspec" % "3.2.19" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.2.19" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % "test"
"org.scalatest" %% "scalatest-wordspec" % "3.3.0-RC1" % "test",
"org.scalatest" %% "scalatest-funspec" % "3.3.0-RC1" % "test",
"org.scalatest" %% "scalatest-funsuite" % "3.3.0-RC1" % "test",
"org.scalatest" %% "scalatest-shouldmatchers" % "3.3.0-RC1" % "test"
)

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

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

publishMavenStyle := true

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.8
sbt.version=1.11.4
3 changes: 1 addition & 2 deletions src/main/scala/org/scalatestplus/junit/JUnitRunner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ final class JUnitRunner(suiteClass: java.lang.Class[_ <: Suite]) extends org.jun
filter,
ConfigMap.empty,
None,
new Tracker,
Set.empty
new Tracker
)
)
} catch {
Expand Down
Loading