You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by hv...@apache.org on 2023/06/13 15:19:59 UTC

[spark] branch master updated: [SPARK-43888][CONNECT][FOLLOW-UP] Spark Connect client should depend on common-utils explicitly

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

hvanhovell pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 2d250085f0a [SPARK-43888][CONNECT][FOLLOW-UP] Spark Connect client should depend on common-utils explicitly
2d250085f0a is described below

commit 2d250085f0a2d3f0f124e274b029bbed29067a6d
Author: Rui Wang <ru...@databricks.com>
AuthorDate: Tue Jun 13 11:19:05 2023 -0400

    [SPARK-43888][CONNECT][FOLLOW-UP] Spark Connect client should depend on common-utils explicitly
    
    ### What changes were proposed in this pull request?
    
     Spark Connect client should depend on common-utils directly.
    
    ### Why are the changes needed?
    
    Spark Connect client is already depending on `common-utils` transitively. We should make this dependency explicit.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No
    
    ### How was this patch tested?
    
    N/A
    
    Closes #41427 from amaliujia/add_common_util_depends.
    
    Authored-by: Rui Wang <ru...@databricks.com>
    Signed-off-by: Herman van Hovell <he...@databricks.com>
---
 connector/connect/client/jvm/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/connector/connect/client/jvm/pom.xml b/connector/connect/client/jvm/pom.xml
index cbb283ed993..8a51bf65d6a 100644
--- a/connector/connect/client/jvm/pom.xml
+++ b/connector/connect/client/jvm/pom.xml
@@ -59,6 +59,11 @@
         </exclusion>
       </exclusions>
     </dependency>
+    <dependency>
+      <groupId>org.apache.spark</groupId>
+      <artifactId>spark-common-utils_${scala.binary.version}</artifactId>
+      <version>${project.version}</version>
+    </dependency>
     <dependency>
       <groupId>com.google.protobuf</groupId>
       <artifactId>protobuf-java</artifactId>
@@ -160,6 +165,7 @@
               <include>org.codehaus.mojo:*</include>
               <include>org.checkerframework:*</include>
               <include>org.apache.spark:spark-connect-common_${scala.binary.version}</include>
+              <include>org.apache.spark:spark-common-utils_${scala.binary.version}</include>
             </includes>
           </artifactSet>
           <relocations>


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