@@ -3,12 +3,12 @@ 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.17 and JUnit 5.10:
6
+ To use it for ScalaTest 3.2.18 and JUnit 5.10:
7
7
8
8
SBT:
9
9
10
10
```
11
- libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.17 .0" % Test
11
+ libraryDependencies += "org.scalatestplus" %% "junit-5-10" % "3.2.18 .0" % Test
12
12
```
13
13
14
14
Maven:
17
17
<dependency>
18
18
<groupId>org.scalatestplus</groupId>
19
19
<artifactId>junit-5-10_2.13</artifactId>
20
- <version>3.2.17 .0</version>
20
+ <version>3.2.18 .0</version>
21
21
<scope>test</scope>
22
22
</dependency>
23
23
```
@@ -26,12 +26,12 @@ Gradle:
26
26
27
27
```
28
28
dependencies {
29
- implementation "org.scala-lang:scala-library:2.13.11 "
29
+ implementation "org.scala-lang:scala-library:2.13.12 "
30
30
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"
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"
35
35
}
36
36
37
37
test {
@@ -48,12 +48,12 @@ Gradle (Kotlin):
48
48
49
49
```
50
50
dependencies {
51
- implementation("org.scala-lang:scala-library:2.13.11 ")
51
+ implementation("org.scala-lang:scala-library:2.13.12 ")
52
52
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")
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")
57
57
}
58
58
59
59
tasks {
0 commit comments