@@ -3,20 +3,20 @@ 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.12 :
6
+ To use it for ScalaTest 3.2.19 and JUnit 5.13 :
7
7
8
8
SBT:
9
9
10
10
```
11
- libraryDependencies += "org.scalatestplus" %% "junit-5-12 " % "3.2.19.0" % Test
11
+ libraryDependencies += "org.scalatestplus" %% "junit-5-13 " % "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-12_3 </artifactId>
19
+ <artifactId>junit-5-13_3 </artifactId>
20
20
<version>3.2.19.0</version>
21
21
<scope>test</scope>
22
22
</dependency>
@@ -29,9 +29,9 @@ dependencies {
29
29
implementation "org.scala-lang:scala3-library:3.3.5"
30
30
31
31
testImplementation "org.scalatest:scalatest_3:3.2.19"
32
- testImplementation "org.junit.platform:junit-platform-launcher:1.12.0 "
33
- testRuntimeOnly "org.junit.platform:junit-platform-engine:1.12.0 "
34
- testRuntimeOnly "org.scalatestplus:junit-5-12_3 :3.2.19.0"
32
+ testImplementation "org.junit.platform:junit-platform-launcher:1.13.1 "
33
+ testRuntimeOnly "org.junit.platform:junit-platform-engine:1.13.1 "
34
+ testRuntimeOnly "org.scalatestplus:junit-5-13_3 :3.2.19.0"
35
35
}
36
36
37
37
test {
@@ -51,9 +51,9 @@ dependencies {
51
51
implementation("org.scala-lang:scala3-library:3.3.5")
52
52
53
53
testImplementation("org.scalatest:scalatest_3:3.2.19")
54
- testRuntimeOnly("org.junit.platform:junit-platform-engine:1.12.0 ")
55
- testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.12.0 ")
56
- testRuntimeOnly("org.scalatestplus:junit-5-12_3 :3.2.19.0")
54
+ testRuntimeOnly("org.junit.platform:junit-platform-engine:1.13.1 ")
55
+ testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.13.1 ")
56
+ testRuntimeOnly("org.scalatestplus:junit-5-13_3 :3.2.19.0")
57
57
}
58
58
59
59
tasks {
0 commit comments