Maven generates duplicate pom.xml and pom.properties files in a jar

前端 未结 6 940
北海茫月
北海茫月 2020-12-15 04:50

I package my Maven-based Spring app with:

mvn install-DskipTests -Peverything. 

And something strange arises. In META-INF of generated jar,

6条回答
  •  时光说笑
    2020-12-15 05:32

    You need to do "mvn clean" and the do "mvn package" after that or just do "mvn clean package". if "mvn clean" fails due to any reason and if you do "mvn package" after that , you will see this issue again.

提交回复
热议问题