@@ -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.19 and JUnit 5.10 :
6+ To use it for ScalaTest 3.2.19 and JUnit 5.11 :
77
88SBT:
99
1010```
11- libraryDependencies += "org.scalatestplus" %% "junit-5-10 " % "3.2.19.1 " % Test
11+ libraryDependencies += "org.scalatestplus" %% "junit-5-11 " % "3.2.19.0 " % Test
1212```
1313
1414Maven:
1515
1616```
1717<dependency>
1818 <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>
2121 <scope>test</scope>
2222</dependency>
2323```
@@ -26,12 +26,12 @@ Gradle:
2626
2727```
2828dependencies {
29- implementation "org.scala-lang:scala3-library:3.3.3 "
29+ implementation "org.scala-lang:scala3-library:3.3.4 "
3030
3131 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 "
3535}
3636
3737test {
@@ -48,12 +48,12 @@ Gradle (Kotlin):
4848
4949```
5050dependencies {
51- implementation("org.scala-lang:scala3-library:3.3.3 ")
51+ implementation("org.scala-lang:scala3-library:3.3.4 ")
5252
5353 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 ")
5757}
5858
5959tasks {
0 commit comments