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

roryqi 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 8c0c37e5 [ISSUE-228] Fix the problem of protobuf-java incorrect 
dependency at compile time (#362)
8c0c37e5 is described below

commit 8c0c37e577756602b3ccf7aaafa68610e93c54b8
Author: yanli <[email protected]>
AuthorDate: Mon Nov 28 11:13:41 2022 +0800

    [ISSUE-228] Fix the problem of protobuf-java incorrect dependency at 
compile time (#362)
    
    ### What changes were proposed in this pull request?
    1. We specified the version number of `protobuf-java` in the 
`client-spark/spark3/pom.xml` file.
    
    ### Why are the changes needed?
    More reasonable. https://github.com/apache/incubator-uniffle/issues/228
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    We compiled in the test environment and verified the correctness of the 
`rss-client-spark3-0.6.0-shaded.jar` package.
---
 client-spark/spark3/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/client-spark/spark3/pom.xml b/client-spark/spark3/pom.xml
index 5196f983..3e50b284 100644
--- a/client-spark/spark3/pom.xml
+++ b/client-spark/spark3/pom.xml
@@ -34,6 +34,11 @@
     <name>Apache Uniffle Client (Spark 3)</name>
 
     <dependencies>
+        <dependency>
+            <groupId>com.google.protobuf</groupId>
+            <artifactId>protobuf-java</artifactId>
+            <version>${protobuf.version}</version>
+        </dependency>
         <dependency>
             <groupId>org.apache.spark</groupId>
             <artifactId>spark-core_${scala.binary.version}</artifactId>

Reply via email to