是的 !你可以 !:-)
Shade 有一个实现问题:它不知道何时在 pom(不是 jar 或 web)项目上运行。Pom 项目不生成二进制工件,然后 shade 找不到要合并、移动等的文件,抛出 NPE。
要解决此问题,请从您的 aggegate-Pom 项目中创建一个父 POM。在其中,将阴影定义和配置配置到某个配置文件(例如,alwaysActiveProfiles)并使用命令安装/部署它:
mvn deploy -P -alwaysActiveProfiles
此命令将在不运行 shade 插件 pom(-alwaysActiveProfiles 选项抑制 shade 插件执行)的情况下安装此着色父级,之后,您的 maven 依赖项目将工作。您的阴影父 pom 可能如下所示:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>xxxxxxxx</groupId>
<artifactId>web-pom</artifactId>
<name>web-pom</name>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
...
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
...
</dependencies>
<profiles>
<profile>
<id>alwaysActiveProfiles</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Remember that your setting.xml must have alwaysActiveProfiles enabled by default, otherwise shade will not run in your dependences shade-pom projects.