You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2023/03/15 07:39:54 UTC

[spark] branch branch-3.4 updated: [SPARK-42799][BUILD] Update SBT build `xercesImpl` version to match with `pom.xml`

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.4 by this push:
     new 492aa385456 [SPARK-42799][BUILD] Update SBT build `xercesImpl` version to match with `pom.xml`
492aa385456 is described below

commit 492aa385456871c7698c7b14d29bcf45615a0f1c
Author: Dongjoon Hyun <dh...@apple.com>
AuthorDate: Wed Mar 15 00:39:25 2023 -0700

    [SPARK-42799][BUILD] Update SBT build `xercesImpl` version to match with `pom.xml`
    
    ### What changes were proposed in this pull request?
    
    This PR aims to update `XercesImpl` version to `2.12.2` from `2.12.0` in order to match with the version of `pom.xml`.
    
    https://github.com/apache/spark/blob/149e020a5ca88b2db9c56a9d48e0c1c896b57069/pom.xml#L1429-L1433
    
    ### Why are the changes needed?
    
    When we updated this version via SPARK-39183, we missed to update `SparkBuild.scala`.
    
    - https://github.com/apache/spark/pull/36544
    
    ### Does this PR introduce _any_ user-facing change?
    
    No, this is a dev-only change because the release artifact' dependency is managed by Maven.
    
    ### How was this patch tested?
    
    Pass the CIs.
    
    Closes #40431 from dongjoon-hyun/SPARK-42799.
    
    Authored-by: Dongjoon Hyun <dh...@apple.com>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
    (cherry picked from commit 049aa380b8b1361c2898bc499e64613d329c6f72)
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 project/SparkBuild.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 80081a68680..b62de6a1629 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -1082,7 +1082,7 @@ object DependencyOverrides {
   lazy val guavaVersion = sys.props.get("guava.version").getOrElse("14.0.1")
   lazy val settings = Seq(
     dependencyOverrides += "com.google.guava" % "guava" % guavaVersion,
-    dependencyOverrides += "xerces" % "xercesImpl" % "2.12.0",
+    dependencyOverrides += "xerces" % "xercesImpl" % "2.12.2",
     dependencyOverrides += "jline" % "jline" % "2.14.6",
     dependencyOverrides += "org.apache.avro" % "avro" % "1.11.1")
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org