@@ -3,21 +3,21 @@ ScalaTest + JUnit provides integration support between ScalaTest and JUnit 5.
3
3
4
4
** Usage**
5
5
6
- To use it for ScalaTest 3.2.16 and JUnit 5.9 :
6
+ To use it for ScalaTest 3.2.17 and JUnit 5.10 :
7
7
8
8
SBT:
9
9
10
10
```
11
- libraryDependencies += "org.scalatestplus" %% "junit-5-9 " % "3.2.16 .0" % Test
11
+ libraryDependencies += "org.scalatestplus" %% "junit-5-10 " % "3.2.17 .0" % Test
12
12
```
13
13
14
14
Maven:
15
15
16
16
```
17
17
<dependency>
18
18
<groupId>org.scalatestplus</groupId>
19
- <artifactId>junit-5-9_2 .13</artifactId>
20
- <version>3.2.16 .0</version>
19
+ <artifactId>junit-5-10_2 .13</artifactId>
20
+ <version>3.2.17 .0</version>
21
21
<scope>test</scope>
22
22
</dependency>
23
23
```
@@ -28,10 +28,10 @@ Gradle:
28
28
dependencies {
29
29
implementation "org.scala-lang:scala-library:2.13.11"
30
30
31
- testImplementation "org.scalatest:scalatest_2.13:3.2.16 "
32
- testImplementation "org.junit.platform:junit-platform-launcher:1.9.1 "
33
- testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1 "
34
- testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.16 .0"
31
+ testImplementation "org.scalatest:scalatest_2.13:3.2.17 "
32
+ testImplementation "org.junit.platform:junit-platform-launcher:1.10.0 "
33
+ testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.0 "
34
+ testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.17 .0"
35
35
}
36
36
37
37
test {
@@ -50,10 +50,10 @@ Gradle (Kotlin):
50
50
dependencies {
51
51
implementation("org.scala-lang:scala-library:2.13.11")
52
52
53
- testImplementation("org.scalatest:scalatest_2.13:3.2.16 ")
54
- testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1 ")
55
- testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1 ")
56
- testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.16 .0")
53
+ testImplementation("org.scalatest:scalatest_2.13:3.2.17 ")
54
+ testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.0 ")
55
+ testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.0 ")
56
+ testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.17 .0")
57
57
}
58
58
59
59
tasks {
0 commit comments