Skip to content

Commit 6d09e93

Browse files
committed
Updated to ScalaTest 3.2.19.
1 parent b343344 commit 6d09e93

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ ScalaTest + JUnit provides integration support between ScalaTest and JUnit.
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.18 and JUnit 4.13:
6+
To use it for ScalaTest 3.2.19 and JUnit 4.13:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.18.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.19.0" % "test"
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>junit-4-13_2.13</artifactId>
20-
<version>3.2.18.0</version>
19+
<artifactId>junit-4-13_3</artifactId>
20+
<version>3.2.19.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 10 additions & 10 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.18.0"
8+
version := "3.2.19.0"
99

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

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

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

3131
crossScalaVersions := List(
3232
"2.11.12",
33-
"2.12.17",
34-
"2.13.12",
35-
"3.3.1"
33+
"2.12.19",
34+
"2.13.13",
35+
"3.3.3"
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.18",
48+
"org.scalatest" %% "scalatest-core" % "3.2.19",
4949
"junit" % "junit" % "4.13.2",
50-
"org.scalatest" %% "scalatest-wordspec" % "3.2.18" % "test",
51-
"org.scalatest" %% "scalatest-funspec" % "3.2.18" % "test",
52-
"org.scalatest" %% "scalatest-funsuite" % "3.2.18" % "test",
53-
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.18" % "test"
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"
5454
)
5555

5656
import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}

0 commit comments

Comments
 (0)