@@ -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.19 and JUnit 5.10 :
6
+ To use it for ScalaTest 3.2.19 and JUnit 5.11 :
7
7
8
8
SBT:
9
9
10
10
```
11
- libraryDependencies += "org.scalatestplus" %% "junit-5-10 " % "3.2.19.1 " % Test
11
+ libraryDependencies += "org.scalatestplus" %% "junit-5-11 " % "3.2.19.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-10_3 </artifactId>
20
- <version>3.2.19.1 </version>
19
+ <artifactId>junit-5-11_3 </artifactId>
20
+ <version>3.2.19.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:scala3-library:3.3.3 "
29
+ implementation "org.scala-lang:scala3-library:3.3.4 "
30
30
31
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.1 "
32
+ testImplementation "org.junit.platform:junit-platform-launcher:1.11.3 "
33
+ testRuntimeOnly "org.junit.platform:junit-platform-engine:1.11.3 "
34
+ testRuntimeOnly "org.scalatestplus:junit-5-10_3:3.2.19.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:scala3-library:3.3.3 ")
51
+ implementation("org.scala-lang:scala3-library:3.3.4 ")
52
52
53
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.1 ")
54
+ testRuntimeOnly("org.junit.platform:junit-platform-engine:1.11.3 ")
55
+ testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.11.3 ")
56
+ testRuntimeOnly("org.scalatestplus:junit-5-10_3:3.2.19.0 ")
57
57
}
58
58
59
59
tasks {
0 commit comments