Maven 在 jar 中生成重复的 pom.xml 和 pom.properties 文件

2022-09-01 17:26:11

我将基于Maven的Spring应用程序打包为:

mvn install-DskipTests -Peverything. 

一些奇怪的事情出现了。在生成的jar的META-INF中,我发现了重复的pom.xml和pom.properties文件。有人可以解释一下吗?谢谢。

enter image description here

这是提取的pom.xml

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.abc.xyz</groupId>
<artifactId>migrate-app</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>migrate-app</name>
<url>http://maven.apache.org</url>
<dependencies>

..

</dependencies>

<profiles>
  <profile>
    <id>everything</id>
    <build>
      <plugins>
        <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>          
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <skipTests>true</skipTests>
        </configuration>
      </plugin>            
      </plugins>
    </build>
  </profile>
  </profiles>   

命令的输出:

mvn -version

Apache Maven 3.0.4 (r1232337; 2012-01-17 15:44:56+0700) Maven home: C:\apache-maven-3.0.4\bin..Java 版本: 1.6.0_30, 供应商: Sun Microsystems Inc. Java 家庭版: C:\Program Files (x86)\Java\jdk1.6.0_30\jre 默认语言环境: en_US, 平台编码: Cp1252 操作系统名称: “windows 7”, 版本: “6.1”, arch: “x86”, 系列: “windows”


答案 1

<build>
   <plugins>
     <plugin>
       <artifactId>maven-jar-plugin</artifactId>
       <configuration>
         <archive>
           <addMavenDescriptor>false</addMavenDescriptor>
         </archive>
       </configuration>
     </plugin>
   </plugins>
</build>

到你的绒球.xml


答案 2

这似乎是一个常见的问题,由Eclipse中的冲突引起,特别是在m2e-wtp集成方面。

有些人表示可以通过在要运行的目标列表中包含干净来修复它,例如.mvn clean package

此外,请尝试更新 m2e 安装,并确保未安装多个版本的 m2em2eclipse(靛蓝之前的版本)。

对其他面临此问题的人的一些引用:


推荐