From 87d159330df6893b22d9d5d204944f67aabadfb6 Mon Sep 17 00:00:00 2001 From: Wenchen Fan Date: Thu, 4 Jun 2026 14:48:06 +0000 Subject: [PATCH] [SPARK-56413][UDF][BUILD][FOLLOWUP] Fix parent POM version in udf-worker-grpc module on branch-4.x ### What changes were proposed in this pull request? When the `udf-worker-grpc` module was backported to `branch-4.x` in SPARK-56413/SPARK-56661, its parent POM version was left at `5.0.0-SNAPSHOT` (the `master` version) instead of `4.2.0-SNAPSHOT`. This corrects the parent version to match the rest of `branch-4.x`. ### Why are the changes needed? `branch-4.x` is at `4.2.0-SNAPSHOT`, but `udf/worker/grpc/pom.xml` referenced parent `spark-parent_2.13:5.0.0-SNAPSHOT`, which cannot be resolved. Since the module is registered in the root POM ``, the build fails at POM model building for every job, breaking the entire `branch-4.x` build: ``` [FATAL] Non-resolvable parent POM for org.apache.spark:spark-udf-worker-grpc_2.13:5.0.0-SNAPSHOT: Could not find artifact org.apache.spark:spark-parent_2.13:pom:5.0.0-SNAPSHOT ``` The sibling modules `udf/worker/core` and `udf/worker/proto` already correctly use `4.2.0-SNAPSHOT`. Co-authored-by: Isaac --- udf/worker/grpc/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/udf/worker/grpc/pom.xml b/udf/worker/grpc/pom.xml index 9250260032a1..0a4aaf8373d6 100644 --- a/udf/worker/grpc/pom.xml +++ b/udf/worker/grpc/pom.xml @@ -24,7 +24,7 @@ org.apache.spark spark-parent_2.13 - 5.0.0-SNAPSHOT + 4.2.0-SNAPSHOT ../../../pom.xml