为什么使用maven阴影插件进行重新定位不起作用?

2022-09-03 01:56:22

我在运行Hadoop作业时遇到了一些麻烦,该作业包含比Hadoop发行版(CDH 5.2)中包含的Guava版本更新的版本。这是一个已知问题。我尝试通过使用Maven阴影插件对库进行着色来解决它。因此,我在我的:pom.xml

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>2.3</version>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>shade</goal>
        </goals>
        <configuration>
          <relocations>
            <relocation>
              <pattern>com.google</pattern>
              <shadedPattern>thirdparty.com.google</shadedPattern>
            </relocation>
          </relocations>
        </configuration>
      </execution>
    </executions>
  </plugin>

不幸的是,阴影似乎不起作用。当我提取uber-JAR时,没有文件夹,但仍然是文件夹。thirdparty/com/googlecom/google

有人知道出了什么问题吗?


答案 1

这对我有用:

<relocations>
   <relocation>
     <pattern>com.google.</pattern>
     <shadedPattern>thirdparty.com.google.</shadedPattern>
   </relocation>
 </relocations>

请注意图案末尾的点。


答案 2

您可能需要在部分下指定显式 artifactSet::includes:<configuration>

    <configuration>
        <artifactSet>
            <includes>
                <include>com.google.guava:*</include>
                ...
            </includes>
        </artifactSet>
        <relocations>
        ...

推荐