我的pom.file中有这个插件:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>package-jar-with-dependencies</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.doesntwork.App</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
直到现在这个工作得很好。目前,我的两个依赖项使用META-INF中某个文件的相同文件名来存储一些数据。不幸的是,插件没有合并文件,它只是用第二个覆盖第一个,这使我的应用程序崩溃。
我可以强制maven合并碰巧具有相同名称的文件(但来自不同的依赖项)吗?