有一个pom文件,它包含一个打包字段
<!-- The Basics -->
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
<packaging>...</packaging>
<dependencies>...</dependencies>
<parent>...</parent>
<dependencyManagement>...</dependencyManagement>
<modules>...</modules>
<properties>...</properties>
答案 0 :(得分:1)
包装定义您要构建的工件类型,例如jar或war(核心包装的完整列表:What are all the default maven packing types?)。
它会影响正在运行的Maven生命周期,尤其是代码的编译和打包方式。