Maven Shade 插件:如何解决警告消息 "define 1 overlapping resource: [WARNING] - META-INF/MANIFEST.MF"
Maven Shade plugin: how resolve the warning message "define 1 overlapping resource: [WARNING] - META-INF/MANIFEST.MF"
对于
<dependencies>
...
<dependency>
<groupId>com.manuel.jordan</groupId>
<artifactId>some module</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
...
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>create-fat-jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>somename</finalName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
插件运行良好,但总是出现此消息:
[WARNING] moduleA-0.0.1-SNAPSHOT.jar,
moduleB-0.0.1-SNAPSHOT.jar,
.... more
moduleN-0.0.1-SNAPSHOT.jar define 1 overlapping resource:
[WARNING] - META-INF/MANIFEST.MF
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
如何修复删除该警告消息?,这主要是因为我所有的模块在其 src/main/resources
目录中没有 META/MANIFEST.MF
文件
在配置中添加这个将从构建中排除资源文件
<filters>
<filter>
<artifact>org.example:*</artifact>
<excludes>
<exclude>META-INF/*.MF</exclude>
</excludes>
</filter>
</filters>
在使用 Badea 的答案后,我仍然想要我的最终 MANIFEST.MF 文件。将此添加到我的 pom.xml 似乎已修复它。就把它留在这里,因为这是搜索此问题时排名靠前的 google 结果 :).
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" />
</transformers>
对于
<dependencies>
...
<dependency>
<groupId>com.manuel.jordan</groupId>
<artifactId>some module</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
...
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<id>create-fat-jar</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<finalName>somename</finalName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
插件运行良好,但总是出现此消息:
[WARNING] moduleA-0.0.1-SNAPSHOT.jar,
moduleB-0.0.1-SNAPSHOT.jar,
.... more
moduleN-0.0.1-SNAPSHOT.jar define 1 overlapping resource:
[WARNING] - META-INF/MANIFEST.MF
[WARNING] maven-shade-plugin has detected that some class files are
[WARNING] present in two or more JARs. When this happens, only one
[WARNING] single version of the class is copied to the uber jar.
[WARNING] Usually this is not harmful and you can skip these warnings,
[WARNING] otherwise try to manually exclude artifacts based on
[WARNING] mvn dependency:tree -Ddetail=true and the above output.
[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/
如何修复删除该警告消息?,这主要是因为我所有的模块在其 src/main/resources
目录中没有 META/MANIFEST.MF
文件
在配置中添加这个将从构建中排除资源文件
<filters>
<filter>
<artifact>org.example:*</artifact>
<excludes>
<exclude>META-INF/*.MF</exclude>
</excludes>
</filter>
</filters>
在使用 Badea 的答案后,我仍然想要我的最终 MANIFEST.MF 文件。将此添加到我的 pom.xml 似乎已修复它。就把它留在这里,因为这是搜索此问题时排名靠前的 google 结果 :).
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" />
</transformers>