You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by ck...@apache.org on 2023/02/14 14:23:52 UTC

[incubator-uniffle] branch master updated: [MINOR] chore: remove duplicated dependency in rss-client-mr (#599)

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

ckj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git


The following commit(s) were added to refs/heads/master by this push:
     new 56145c27 [MINOR] chore: remove duplicated dependency in rss-client-mr (#599)
56145c27 is described below

commit 56145c2731e68a3e0e89683691c1da0a8172a5d8
Author: Kaijie Chen <ck...@apache.org>
AuthorDate: Tue Feb 14 22:23:45 2023 +0800

    [MINOR] chore: remove duplicated dependency in rss-client-mr (#599)
    
    ### What changes were proposed in this pull request?
    
    Remove duplicated dependency in `rss-client-mr`.
    
    ### Why are the changes needed?
    
    Dependency `rss-client` is duplicated.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No.
    
    ### How was this patch tested?
    
    CI.
---
 client-mr/pom.xml | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/client-mr/pom.xml b/client-mr/pom.xml
index b91c3160..54c23e54 100644
--- a/client-mr/pom.xml
+++ b/client-mr/pom.xml
@@ -33,6 +33,10 @@
     <name>Apache Uniffle Client (MapReduce)</name>
 
     <dependencies>
+        <dependency>
+            <groupId>org.apache.uniffle</groupId>
+            <artifactId>rss-client</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-mapreduce-client-core</artifactId>
@@ -60,10 +64,6 @@
             <artifactId>hadoop-common</artifactId>
             <version>${hadoop.version}</version>
         </dependency>
-        <dependency>
-            <groupId>org.apache.uniffle</groupId>
-            <artifactId>rss-client</artifactId>
-        </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-lang3</artifactId>
@@ -91,10 +91,6 @@
             <groupId>io.grpc</groupId>
             <artifactId>grpc-protobuf</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.apache.uniffle</groupId>
-            <artifactId>rss-client</artifactId>
-        </dependency>
         <dependency>
             <groupId>com.google.protobuf</groupId>
             <artifactId>protobuf-java</artifactId>