maven 打包 去除 pom.properties

 在 pom文件中加入以下内容

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
   </plugins>
</build>


大家可以打开下面 网址 查看其他配置选项
https://maven.apache.org/shared/maven-archiver/index.html
 

  
posted @ 2021-04-01 16:04  牛牛——  阅读(949)  评论(0)    收藏  举报