You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by le...@apache.org on 2022/06/23 13:46:29 UTC

[hudi] branch master updated: [HUDI-4299] Fix problem about hudi-example-java run failed on idea. (#5936)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 38ff18a199 [HUDI-4299] Fix problem about hudi-example-java run failed on idea. (#5936)
38ff18a199 is described below

commit 38ff18a19902f3db3b1c497d153cd73e411e8622
Author: Forus <70...@users.noreply.github.com>
AuthorDate: Thu Jun 23 21:46:22 2022 +0800

    [HUDI-4299] Fix problem about hudi-example-java run failed on idea. (#5936)
---
 hudi-examples/hudi-examples-java/pom.xml | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/hudi-examples/hudi-examples-java/pom.xml b/hudi-examples/hudi-examples-java/pom.xml
index cfd803dffa..c455de345a 100644
--- a/hudi-examples/hudi-examples-java/pom.xml
+++ b/hudi-examples/hudi-examples-java/pom.xml
@@ -152,6 +152,22 @@
             <artifactId>mockito-junit-jupiter</artifactId>
             <scope>test</scope>
         </dependency>
-
+        <dependency>
+            <groupId>org.apache.parquet</groupId>
+            <artifactId>parquet-hadoop</artifactId>
+            <version>${parquet.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.xerial.snappy</groupId>
+                    <artifactId>snappy-java</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.parquet</groupId>
+            <artifactId>parquet-avro</artifactId>
+            <version>${parquet.version}</version>
+            <scope>provided</scope>
+        </dependency>
     </dependencies>
 </project>