Skip to content

Commit a38d1ce

Browse files
committed
[SPARK-52527][BUILD] Upgrade junit to 5.13.1
### What changes were proposed in this pull request? This PR aims to upgrade `junit` to 5.13.1. ### Why are the changes needed? - https://github.com/sbt/sbt-jupiter-interface/releases/tag/v0.15.0 - https://github.com/junit-team/junit5/milestone/97?closed=1 - https://junit.org/junit5/docs/snapshot/release-notes/index.html#release-notes-5.13.1 - https://github.com/junit-team/junit5/milestone/94?closed=1 - junit-team/junit5#4440 - https://junit.org/junit5/docs/snapshot/release-notes/index.html#release-notes-5.13.0 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #51217 from dongjoon-hyun/SPARK-52527. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 18faa83 commit a38d1ce

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
@@ -219,13 +219,13 @@
219219
<netty.version>4.1.122.Final</netty.version>
220220
<netty-tcnative.version>2.0.72.Final</netty-tcnative.version>
221221
<icu4j.version>77.1</icu4j.version>
222-
<junit-jupiter.version>5.12.2</junit-jupiter.version>
223-
<junit-platform.version>1.12.2</junit-platform.version>
222+
<junit-jupiter.version>5.13.1</junit-jupiter.version>
223+
<junit-platform.version>1.13.1</junit-platform.version>
224224
<!--
225225
SPARK-50299: When updating `sbt-jupiter-interface.version`,
226226
also need to update the version in `SparkBuild.scala` and `plugins.sbt`.
227227
-->
228-
<sbt-jupiter-interface.version>0.14.0</sbt-jupiter-interface.version>
228+
<sbt-jupiter-interface.version>0.15.0</sbt-jupiter-interface.version>
229229
<!--
230230
If you are changing Arrow version specification, please check
231231
./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
@@ -1723,7 +1723,7 @@ object TestSettings {
17231723
(Test / testOptions) += Tests.Argument(TestFrameworks.ScalaTest, "-W", "120", "300"),
17241724
(Test / testOptions) += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
17251725
// Enable Junit testing.
1726-
libraryDependencies += "com.github.sbt.junit" % "jupiter-interface" % "0.14.0" % "test",
1726+
libraryDependencies += "com.github.sbt.junit" % "jupiter-interface" % "0.15.0" % "test",
17271727
// `parallelExecutionInTest` controls whether test suites belonging to the same SBT project
17281728
// can run in parallel with one another. It does NOT control whether tests execute in parallel
17291729
// 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.14.0")
44+
addSbtPlugin("com.github.sbt.junit" % "sbt-jupiter-interface" % "0.15.0")
4545

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

0 commit comments

Comments
 (0)