1. 程式人生 > >maven pom.xml

maven pom.xml

manage artifact pid mave end gem war clu 模塊

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<!-- 指定了當前pom的版本 -->
<modelVersion>4.0.0</modelVersion>
<groupId>反寫的公司網址+項目名</groupId>

<artifactId>項目名+模塊名</artifactId>
<!-- 第一個0表示大版本號
第二個0表示分支版本號
第三個0表示小版本號
0.0.1
snapshot快照
alpha內部測試
beta公測
Release穩定
GA正式發布 -->
<version></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 -->
<optional></optional>
<!-- 排除依賴傳遞列表 -->
<exclusions>
<exclusion></exclusion>
</exclusions>
</dependency>
</dependencies>
<!-- 依賴的管理 -->
<dependencyManagement>
<dependencies>
<dependency></dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId></groupId>
<artifactId></artifactId>
<version></version>

</plugin>
</plugins>
</build>


<parent></parent>

<modules>
<module></module>
</modules>



</project>

maven pom.xml