Maven-shade-plugin是否可以与scala类一起使用?

时间:2019-03-23 01:14:29

标签: scala maven maven-shade-plugin scala-maven-plugin

我有一个同时包含Java和Scala组件的maven项目,但是当我使用maven-shade-plugin时,它会同时为Java和Scala文件定位软件包名称,但是仅重命名Java文件中的软件包,Scala文件仍包含较旧的版本包裹名称,我想念什么?

               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-shade-plugin</artifactId>
               <version>3.2.1</version>
               <executions>
                   <execution>
                       <phase>package</phase>
                       <goals>
                           <goal>shade</goal>
                       </goals>
                       <configuration>
                           <!--<minimizeJar>true</minimizeJar>-->
                           <artifactSet>
                               <includes>
                                   <include>ml.dmlc:xgboost4j-spark</include>
                                   <include>ml.dmlc:xgboost4j</include>
                               </includes>
                           </artifactSet>
                           <filters>
                               <filter>
                                   <artifact>*:*</artifact>
                                   <excludes>
                                       <exclude>META-INF/*.SF</exclude>
                                       <exclude>META-INF/*.DSA</exclude>
                                       <exclude>META-INF/*.RSA</exclude>
                                   </excludes>
                               </filter>
                           </filters>
                           <relocations>
                               <relocation>
                                   <pattern>ml.dmlc.xgboost4j</pattern>
                                   <shadedPattern>ml.dmlc.xgboost4j.shaded</shadedPattern>
                               </relocation>
                           </relocations>
                           <transformers>
                           </transformers>
                       </configuration>
                   </execution>
               </executions>
           </plugin>```

2 个答案:

答案 0 :(得分:1)

是的,确实如此。选择所需的任何build version并将库导入到Scala项目中。

答案 1 :(得分:1)

遗憾的是,我认为 Maven 旨在具有此功能,但目前(2020 年 12 月)并没有。

这可以通过这个错误票看到: https://issues.apache.org/jira/browse/MSHADE-345

解决方法

我个人为此做了一个愚蠢的解决方法。我创建了一个具有依赖项的新空 mvn 项目:

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>28.0-jre</version>
</dependency>

和插件:

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

然后在需要低版本guava和新版本guava的代码的项目中,将空项目作为依赖引入。

    <dependency>
        <groupId>com.yoursite.yourwork</groupId>
        <artifactId>shader</artifactId>
        <version>0.0.1</version>
    </dependency>

然后在 .scala 文件中导入新的(版本 28)番石榴类,如下所示:

import shader.com.google.common.graph.Network

为什么有效

由于错误仅发生在您引用自己的使用依赖项的类的 Scala 项目中,或者如问题“Scala 文件仍然包含较旧的包名称” 中所述,对项目进行着色不引用它自己的依赖项绕过错误。