Maven中的pom.properties文件

■pom.properties

0.所在路径

  xxx.jar/META-INF/maven/grooupId/artifactId/

1.正常情况下,只包含下机项目

    ・version

    ・grooupId

    ・artifactId

2.文件的换行符,由maven执行的环境决定

3.打包前,不使用clean命令

  ・当项目中的资源有修改时,才会生成新的jar包

  ・ pom.properties中,还会多出如下项目

#Generated by Manen Integration for Eclipse

#Thu Sep 10 10:17:44 JST 2020

    ・version
    ・grooupId

 ・m2e.projectName=

 ・m2e.projectLocation=

    ・artifactId

 

■Maven打包,详细介绍

https://blog.csdn.net/sxzlc/article/details/107529169

 

 

你可能感兴趣的:(Maven)