Skip to content

Commit ea97c0c

Browse files
committed
Updated versions in examples.
1 parent 4794833 commit ea97c0c

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

examples/gradle-example/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ repositories {
88
}
99

1010
dependencies {
11-
implementation "org.scala-lang:scala3-library_3:3.3.3"
11+
implementation "org.scala-lang:scala3-library_3:3.3.4"
1212

1313
testImplementation "org.scalatest:scalatest_3:3.2.19"
14-
testImplementation "org.junit.platform:junit-platform-launcher:1.10.2"
15-
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.10.2"
16-
testRuntimeOnly "org.scalatestplus:junit-5-10_3:3.2.19.1"
14+
testImplementation "org.junit.platform:junit-platform-launcher:1.11.3"
15+
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.11.3"
16+
testRuntimeOnly "org.scalatestplus:junit-5-11_3:3.2.19.0"
1717
}
1818

1919
test {

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ repositories {
99
}
1010

1111
dependencies {
12-
implementation("org.scala-lang:scala3-library_3:3.4.1")
12+
implementation("org.scala-lang:scala3-library_3:3.3.4")
1313

14-
testImplementation("org.scalatest:scalatest_3:3.2.18")
15-
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.10.2")
16-
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.10.2")
17-
testRuntimeOnly("org.scalatestplus:junit-5-10_3:3.2.18.0")
14+
testImplementation("org.scalatest:scalatest_3:3.2.19")
15+
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.11.3")
16+
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.11.3")
17+
testRuntimeOnly("org.scalatestplus:junit-5-11_3:3.2.19.0")
1818
}
1919

2020
tasks {

examples/maven-example/pom.xml

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

1212
<properties>
1313
<java.version>1.8</java.version>
14-
<junit.version>1.10.2</junit.version>
15-
<scalatest.version>3.2.18</scalatest.version>
14+
<junit.version>1.11.3</junit.version>
15+
<scalatest.version>3.2.19</scalatest.version>
1616
<scala.compat.version>3</scala.compat.version>
17-
<scala.version>3.4.1</scala.version>
17+
<scala.version>3.3.4</scala.version>
1818
<scala.maven.plugin>4.7.1</scala.maven.plugin>
1919
<maven.surefire.version>3.0.0-M7</maven.surefire.version>
2020

@@ -62,7 +62,7 @@
6262
</dependency>
6363
<dependency>
6464
<groupId>org.scalatestplus</groupId>
65-
<artifactId>junit-5-10_${scala.compat.version}</artifactId>
65+
<artifactId>junit-5-11_${scala.compat.version}</artifactId>
6666
<version>${scalatest.version}.0</version>
6767
<scope>test</scope>
6868
</dependency>

0 commit comments

Comments
 (0)