You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by je...@apache.org on 2019/03/20 17:51:06 UTC

[incubator-pinot] branch orc updated: Fixing maven enforcer dependency issuse

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

jenniferdai pushed a commit to branch orc
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/orc by this push:
     new 63336cc  Fixing maven enforcer dependency issuse
63336cc is described below

commit 63336ccef5dcaa23b6fada57f70d8c2b55f234c4
Author: Jennifer Dai <jd...@linkedin.com>
AuthorDate: Wed Mar 20 10:50:51 2019 -0700

    Fixing maven enforcer dependency issuse
---
 pinot-core/pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/pinot-core/pom.xml b/pinot-core/pom.xml
index 82a1fb3..c3f02cf 100644
--- a/pinot-core/pom.xml
+++ b/pinot-core/pom.xml
@@ -216,10 +216,26 @@
     <dependency>
       <groupId>org.apache.orc</groupId>
       <artifactId>orc-core</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-annotations</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.orc</groupId>
       <artifactId>orc-mapreduce</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-annotations</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>hadoop-yarn-common</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
 </project>


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