@@ -3,35 +3,35 @@ 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.11 :
6+ To use it for ScalaTest 3.2.19 and JUnit 5.12 :
77
88SBT:
99
1010```
11- libraryDependencies += "org.scalatestplus" %% "junit-5-11 " % "3.2.19.0" % Test
11+ libraryDependencies += "org.scalatestplus" %% "junit-5-12 " % "3.2.19.0" % Test
1212```
1313
1414Maven:
1515
1616```
1717<dependency>
1818 <groupId>org.scalatestplus</groupId>
19- <artifactId>junit-5-11_3 </artifactId>
19+ <artifactId>junit-5-12_3 </artifactId>
2020 <version>3.2.19.0</version>
2121 <scope>test</scope>
2222</dependency>
2323```
2424
25- Gradle:
25+ Gradle:
2626
2727```
2828dependencies {
29- implementation "org.scala-lang:scala3-library:3.3.4 "
29+ implementation "org.scala-lang:scala3-library:3.3.5 "
3030
3131 testImplementation "org.scalatest:scalatest_3:3.2.19"
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"
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"
3535}
3636
3737test {
@@ -44,16 +44,16 @@ test {
4444}
4545```
4646
47- Gradle (Kotlin):
47+ Gradle (Kotlin):
4848
4949```
5050dependencies {
51- implementation("org.scala-lang:scala3-library:3.3.4 ")
51+ implementation("org.scala-lang:scala3-library:3.3.5 ")
5252
5353 testImplementation("org.scalatest:scalatest_3:3.2.19")
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")
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")
5757}
5858
5959tasks {
@@ -85,4 +85,4 @@ Please use the following commands to publish to Sonatype:
8585
8686```
8787$ sbt +publishSigned
88- ```
88+ ```
0 commit comments