Skip to content

Commit f3efe1a

Browse files
committed
[SPARK-51924][BUILD] Upgrade jupiter-interface to 0.14.0 and Junit5 to 5.12.2
### What changes were proposed in this pull request? This pr aims to upgrade `jupiter-interface` from 0.13.3 to 0.14.0 and Junit5 to the latest version(Platform 1.12.2 + Jupiter 5.12.2). ### Why are the changes needed? The full release notes of `jupiter-interface` as follows: - https://github.com/sbt/sbt-jupiter-interface/releases/tag/v0.14.0 and the full release notes between Junit 5.11.4 to 5.12.2 as follows: - https://junit.org/junit5/docs/5.12.2/release-notes/#release-notes-5.12.2 ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Pass GitHub Actions ### Was this patch authored or co-authored using generative AI tooling? No Closes #50724 from LuciferYang/SPARK-51924. Authored-by: yangjie01 <[email protected]> Signed-off-by: yangjie01 <[email protected]>
1 parent 81ede34 commit f3efe1a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,13 +218,13 @@
218218
<netty.version>4.1.119.Final</netty.version>
219219
<netty-tcnative.version>2.0.70.Final</netty-tcnative.version>
220220
<icu4j.version>76.1</icu4j.version>
221-
<junit-jupiter.version>5.11.4</junit-jupiter.version>
222-
<junit-platform.version>1.11.4</junit-platform.version>
221+
<junit-jupiter.version>5.12.2</junit-jupiter.version>
222+
<junit-platform.version>1.12.2</junit-platform.version>
223223
<!--
224224
SPARK-50299: When updating `sbt-jupiter-interface.version`,
225225
also need to update the version in `SparkBuild.scala` and `plugins.sbt`.
226226
-->
227-
<sbt-jupiter-interface.version>0.13.3</sbt-jupiter-interface.version>
227+
<sbt-jupiter-interface.version>0.14.0</sbt-jupiter-interface.version>
228228
<!--
229229
If you are changing Arrow version specification, please check
230230
./python/pyspark/sql/pandas/utils.py, ./python/packaging/classic/setup.py,

project/SparkBuild.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ object TestSettings {
17151715
(Test / testOptions) += Tests.Argument(TestFrameworks.ScalaTest, "-W", "120", "300"),
17161716
(Test / testOptions) += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
17171717
// Enable Junit testing.
1718-
libraryDependencies += "com.github.sbt.junit" % "jupiter-interface" % "0.13.3" % "test",
1718+
libraryDependencies += "com.github.sbt.junit" % "jupiter-interface" % "0.14.0" % "test",
17191719
// `parallelExecutionInTest` controls whether test suites belonging to the same SBT project
17201720
// can run in parallel with one another. It does NOT control whether tests execute in parallel
17211721
// within the same JVM (which is controlled by `testForkedParallel`) or whether test cases

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")
4141

4242
addSbtPlugin("com.github.sbt" % "sbt-pom-reader" % "2.4.0")
4343

44-
addSbtPlugin("com.github.sbt.junit" % "sbt-jupiter-interface" % "0.13.3")
44+
addSbtPlugin("com.github.sbt.junit" % "sbt-jupiter-interface" % "0.14.0")
4545

4646
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.7")

0 commit comments

Comments
 (0)