pom.xml

Posted youdao67

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pom.xml相关的知识,希望对你有一定的参考价值。

指定当前的pom版本
<modelVersion>4.0.0</modelVersion>

<groupId>反写的公司网址+项目名</groupId>
<artifactId>项目名+模块名</artifactId>

第一个0表示大版本号
第二个0表示分支版本号
第三个1表示小版本号
snapshot快照
alpha内部测试
beta公测
release稳定
GA正式发布
<version>0.0.1-SNAPSHOT</version>

默认是jar war zip pom
<packaging></packaging>

项目描述名
<name></name>

项目地址
<url></url>

项目描述
<description></description>

开发人员
<developers></developers>

许可证信息
<licenses></licenses>

组织信息
<organization></organization>

<dependencies>
<dependency>
<groupId></groupID>
<artifactId></artifactId>
<version></version>
<type></type>
<scope>test</scope>
设置依赖是否可选 默认false/true
<optional></optional>
排除依赖传递列表
<exclusions>
<exclusion>
</exclusion>
</exclusions>
</dependency>
</dependencies>

依赖管理
<dependencyManagement>
<dependencies>
<dependency></dependency>
</dependencies>
</dependencyManagement>

<build>
插件列表
<plugins>
<plugin></plugin>
</plugins>
</build>

<parent></parent>

<modules></modules>

以上是关于pom.xml的主要内容,如果未能解决你的问题,请参考以下文章