Skip to content

Commit 9b0568d

Browse files
committed
Fix examples.
1 parent dce01f6 commit 9b0568d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

examples/gradle-example/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies {
1111
implementation "org.scala-lang:scala3-library_3:3.3.5"
1212

1313
testImplementation "org.scalatest:scalatest_3:3.2.19"
14-
testImplementation "org.junit.platform:junit-platform-launcher:1.12.0"
15-
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.12.0"
16-
testRuntimeOnly "org.scalatestplus:junit-5-12_3:3.2.19.0"
14+
testImplementation "org.junit.platform:junit-platform-launcher:1.14.0"
15+
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.14.0"
16+
testRuntimeOnly "org.scalatestplus:junit-5-14_3:3.2.19.0"
1717
}
1818

1919
test {

examples/gradle-kotlin-dsl-example/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ dependencies {
1212
implementation("org.scala-lang:scala3-library_3:3.3.5")
1313

1414
testImplementation("org.scalatest:scalatest_3:3.2.19")
15-
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.12.0")
16-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.12.0")
17-
testRuntimeOnly("org.scalatestplus:junit-5-12_3:3.2.19.0")
15+
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.14.0")
16+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.14.0")
17+
testRuntimeOnly("org.scalatestplus:junit-5-14_3:3.2.19.0")
1818
}
1919

2020
tasks {

examples/maven-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<properties>
1313
<java.version>1.8</java.version>
14-
<junit.version>1.12.0</junit.version>
14+
<junit.version>1.14.0</junit.version>
1515
<scalatest.version>3.2.19</scalatest.version>
1616
<scala.compat.version>3</scala.compat.version>
1717
<scala.version>3.3.5</scala.version>
@@ -62,7 +62,7 @@
6262
</dependency>
6363
<dependency>
6464
<groupId>org.scalatestplus</groupId>
65-
<artifactId>junit-5-12_${scala.compat.version}</artifactId>
65+
<artifactId>junit-5-14_${scala.compat.version}</artifactId>
6666
<version>${scalatest.version}.0</version>
6767
<scope>test</scope>
6868
</dependency>

0 commit comments

Comments
 (0)