You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Zoltan Haindrich (JIRA)" <ji...@apache.org> on 2018/05/22 14:23:00 UTC

[jira] [Created] (HIVE-19651) only add arrow dependency once

Zoltan Haindrich created HIVE-19651:
---------------------------------------

             Summary: only add arrow dependency once
                 Key: HIVE-19651
                 URL: https://issues.apache.org/jira/browse/HIVE-19651
             Project: Hive
          Issue Type: Bug
            Reporter: Zoltan Haindrich


in serde/pom.xml
{code}
    <dependency>
      <groupId>org.apache.arrow</groupId>
      <artifactId>arrow-vector</artifactId>
      <version>${arrow.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.arrow</groupId>
      <artifactId>arrow-vector</artifactId>
      <version>${arrow.version}</version>
    </dependency>
{code}

maven is complaining:

{code}
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for org.apache.hive:hive-serde:jar:3.1.0-SNAPSHOT
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.arrow:arrow-vector:jar -> duplicate declaration of version ${arrow.version} @ org.apache.hive:hive-serde:[unknown-version], /home/kirk/projects/hive/HIVE-19237-oid-once/serde/pom.xml, line 73, column 17
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)