Skip to content

Commit ced778b

Browse files
committed
Updated to ScalaTest 3.2.19.
1 parent d48cfca commit ced778b

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

README.md

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

44
**Usage**
55

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

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.18.0" % Test
11+
libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.19.0" % Test
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>junit-5-10_2.13</artifactId>
20-
<version>3.2.18.0</version>
19+
<artifactId>junit-5-10_3</artifactId>
20+
<version>3.2.19.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```
@@ -26,12 +26,12 @@ Gradle:
2626

2727
```
2828
dependencies {
29-
implementation "org.scala-lang:scala-library:2.13.12"
29+
implementation "org.scala-lang:scala3-library:3.3.3"
3030
31-
testImplementation "org.scalatest:scalatest_2.13:3.2.18"
32-
testImplementation "org.junit.platform:junit-platform-launcher:1.10.1"
33-
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.1"
34-
testRuntimeOnly "org.scalatestplus:junit-5-10_2.13:3.2.18.0"
31+
testImplementation "org.scalatest:scalatest_3:3.2.19"
32+
testImplementation "org.junit.platform:junit-platform-launcher:1.10.2"
33+
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.2"
34+
testRuntimeOnly "org.scalatestplus:junit-5-10_3:3.2.19.0"
3535
}
3636
3737
test {
@@ -48,12 +48,12 @@ Gradle (Kotlin):
4848

4949
```
5050
dependencies {
51-
implementation("org.scala-lang:scala-library:2.13.12")
51+
implementation("org.scala-lang:scala3-library:3.3.3")
5252
53-
testImplementation("org.scalatest:scalatest_2.13:3.2.18")
54-
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.1")
55-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.1")
56-
testRuntimeOnly("org.scalatestplus:junit-5-10_2.13:3.2.18.0")
53+
testImplementation("org.scalatest:scalatest_3:3.2.19")
54+
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.2")
55+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2")
56+
testRuntimeOnly("org.scalatestplus:junit-5-10_3:3.2.19.0")
5757
}
5858
5959
tasks {

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "junit-5.10"
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.18",
34-
"2.13.12",
35-
"3.3.1"
33+
"2.12.19",
34+
"2.13.13",
35+
"3.3.3"
3636
)
3737

3838
scalacOptions ++= Seq("-target:jvm-1.8")
@@ -46,7 +46,7 @@ Compile / unmanagedSourceDirectories ++= {
4646
}
4747
}
4848

49-
val scalatestVersion = "3.2.18"
49+
val scalatestVersion = "3.2.19"
5050
val junitVersion = "5.10.2"
5151
val junitEngineVersion = "1.10.2"
5252

0 commit comments

Comments
 (0)