Maven hive-exec与protobuf冲突

时间:2016-10-28 15:23:48

标签: maven hive protocol-buffers

我是maven的新手。在我的项目中,我发现hive-exec与protobuf冲突。下面是我项目中的pom。

<dependencies>
    <dependency>
        <groupId>org.apache.hive</groupId>
        <artifactId>hive-exec</artifactId>
        <version>0.13.0.2.1.7.0-784</version>
    </dependency>
    <dependency>
        <groupId>com.google.protobuf</groupId>
        <artifactId>protobuf-java</artifactId>
        <scope>compile</scope>
        <version>3.1.0</version>
    </dependency>
</dependencies>

所以我深入研究hive-exec。我发现它使用的是maven-shade-plugin。我想它是用于打包hive-exec jar的。下面是hive-exec.pom中的相关代码:

<plugin>
    <artifactId>maven-shade-plugin</artifactId>
    <executions>
      <execution>
        <id>build-exec-bundle</id>
        <phase>package</phase>
        <goals>
          <goal>shade</goal>
        </goals>
        <configuration>
          <artifactSet>
            <includes>
              ...
              <include>com.google.protobuf:protobuf-java</include>
              ...
            </includes>
          </artifactSet>
          <relocations>
            <relocation>
              <pattern>com.esotericsoftware</pattern>
              <shadedPattern>org.apache.hive.com.esotericsoftware</shadedPattern>
            </relocation>
          </relocations>
        </configuration>
      </execution>
    </executions>
  </plugin>

而且(我不确定配置文件是如何工作的):

<profile>
  <id>protobuf</id>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>generate-protobuf-sources</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <target>
                <property />
                <property />
                <echo>Building ORC Protobuf</echo>
                <mkdir />
                <exec>
                  <arg />
                  <arg />
                  <arg />
                </exec>
              </target>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</profile>

这里应该是JIRA

我的问题是:

  1. 如何排除内置的protobuff,并使用protobuff 3.1.0覆盖该类?在这种情况下看起来像普通<excludes>一样。

  2. 如果我无法覆盖它,我怎样才能找到protobuff类的版本?我无法在hive-exec.pom中找到它。

  3. 非常感谢!!

2 个答案:

答案 0 :(得分:0)

hive-exec 也有这个 .jar 的核心分类器。以下是我在 Gradle 中解决此问题的方法,Maven 提供了一个您应该可以使用的 private readonly IWebHostEnvironment _env; public HomeController(IWebHostEnvironment env) { _env = env; } public ActionResult Index() { string contentRootPath = _env.ContentRootPath; string webRootPath = _env.WebRootPath; return Content(contentRootPath + "\n" + webRootPath); } 标记。

<classifier>

这个版本在他们愚蠢的非阴影 .jar 中没有其他依赖项来破坏你的类路径,当我遇到类似的问题时,它为我解决了问题。

答案 1 :(得分:0)

将 protobuf-java 放在 hive-exec 对我有用之前:

<!-- protobuf-java should come before hive-exec -->
<dependency>
  <groupId>com.google.protobuf</groupId>
  <artifactId>protobuf-java</artifactId>
  <version>3.6.0</version>
</dependency>
<dependency>
  <groupId>org.apache.hive</groupId>
  <artifactId>hive-exec</artifactId>
  <version>3.1.2</version>
</dependency>