gpt4 book ai didi

Maven hive-exec 与 protobuf 冲突

转载 作者:行者123 更新时间:2023-12-05 04:12:28 26 4
gpt4 key购买 nike

我是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 中找不到它。

非常感谢!

最佳答案

hive-exec 也有这个 .jar 的核心分类器。这是我在 Gradle 中解决这个问题的方法,Maven 提供了一个 <classifier>您应该可以使用的标签。

implementation group: 'org.apache.hive', name: 'hive-exec', version: '3.1.2', classifier: 'core'

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

关于Maven hive-exec 与 protobuf 冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40308289/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com