pom文件做爲MAVEN中重要的配置文件,對於它的配置是至關重要。文件中包含了開發者需遵循的規則、缺陷管理系統、組織、licenses、項目信息、項目依賴性等。下面將重點介紹一下該文件的基本組成與功能。java
<project> <modelVersion>4.0.0</modelVersion> <!-- 基礎設置 --> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> <packaging>...</packaging> <name>...</name> <url>...</url> <dependencies>...</dependencies> <parent>...</parent> <dependencyManagement>...</dependencyManagement> <modules>...</modules> <properties>...</properties> <!--構建設置 --> <build>...</build> <reporting>...</reporting> <!-- 更多項目信息 --> <name>...</name> <description>...</description> <url>...</url> <inceptionYear>...</inceptionYear> <licenses>...</licenses> <organization>...</organization> <developers>...</developers> <contributors>...</contributors> <!-- 環境設置--> <issueManagement>...</issueManagement> <ciManagement>...</ciManagement> <mailingLists>...</mailingLists> <scm>...</scm> <prerequisites>...</prerequisites> <repositories>...</repositories> <pluginRepositories>...</pluginRepositories> <distributionManagement>...</distributionManagement> <profiles>...</profiles> </project>
groupId:項目或者組織的惟一標誌 ,如cn.gov.customs生成的相對路徑爲:/cn/gov/customsgit
artifactId:項目的通用名稱github
version:項目的版本web
packaging:打包機制,如pom,jar,maven-plugin,ejb,war,ear,rar,parspring
name:用戶描述項目的名稱,可有可無的東西,非必要apache
url:開發團隊官方地址 ,非必要api
classifer:分類maven
對於以上基本標籤,groupId,artifactId,version,packaging做爲項目惟一座標ide
對於POM文件中的關係,主要有依賴,繼承,合成等關係。spring-boot
<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.0</version> <type>jar</type> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.alibaba.china.shared</groupId> <artifactId>alibaba.apollo.webx</artifactId> <version>2.5.0</version> <exclusions> <exclusion> <artifactId>org.slf4j.slf4j-api</artifactId> <groupId>com.alibaba.external</groupId> </exclusion> .... </exclusions> ...... </dependencies>
以上代碼說明:groupId, artifactId, version這三個組合標示依賴的具體工程。若是在中央倉庫中沒有的依賴包,須要自行導入到本地或私有倉庫中。
具體有三種方式,簡單提一提,具體後續出專題文章。
經過本地maven 進行配置安裝 使用maven install plugin。如:mvn install:intall-file -Dfile=non-maven-proj.jar -DgroupId=som.group -DartifactId=non-maven-proj -Dversion=1。
建立本身的repositories而且部署這個包,使用相似上面的deploy:deploy-file命令。
在代碼中配置scope爲system,而且指定系統路徑。
dependency介紹
dependency下面包含衆多字標籤。
type:默認爲jar類型,經常使用的類型有:jar,ejb-client,test-jar...,可設置plugins中的extensions值爲true後在增長新類型。
scope:用來指定當前包的依賴範圍
optional:設置指依賴是否可選,默認爲false,即子項目默認都繼承,爲true,則子項目必需顯示的引入,與dependencyManagement裏定義的依賴相似 。
exclusions:若是X須要A,A包含B依賴,那麼X能夠聲明不要B依賴,只要在exclusions中聲明exclusion。
exclusion:將B從依賴樹中刪除,如上配置,alibaba.apollo.webx不想使用com.alibaba.external ,可是alibaba.apollo.webx是集成了com.alibaba.external,r因此就須要排除掉。
parent:若是一個工程做爲父類工程,那就必須添加pom,子系統要繼承父類,也必須使用parent標籤。對於子系統使用以下所示:
<parent> <groupId>org.codehaus.mojo</groupId> <artifactId>my-parent</artifactId> <version>2.0</version> <relativePath>../my-parent</relativePath> </parent>
說明:
relativePath:爲可選項,maven會首先搜索該地址,而後再搜索遠程倉庫。
dependencyManagement:用於幫助管理chidren的dependencies,優勢就是能夠集中管理版本。
modules:多模塊項目的標籤,順序不重要,MAVEN會自動拓展排序。使用以下所示:
<!--子模塊--> <modules> <module>ygb-service-config</module> <module>ygb-service-bus</module> <module>ygb-service-policy-center</module> <module>ygb-service-letter-of-indemnity</module> <module>ygb-service-authentication-center</module> <module>ygb-service-eureka-center</module> <module>ygb-service-api-gateway</module> <module>ygb-service-demo</module> <module>ygb-service-cache-ehcache</module> <module>ygb-service-maven</module> </modules>
properties:POM文件常量定義區,在文件中能夠直接引用,如版本、編碼等。以下所示:
<properties> <file.encoding>UTF-8</file_encoding> <java.source.version>1.8</java_source_version> <java.target.version>1.8</java_target_version> </properties>
使用方式:${file.encoding}
這部分主要是對項目的構建過程進行配置,包括打包的方式、插件的安裝等。配置以下所示:
<!-- 構建管理 --> <build> <!--構建工具插件管理--> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
defaultGoal :默認的目標,必須跟命令行上的參數相同,如:jar:jar,或者與時期parse相同,例如install。
directory:指定build target目標的目錄,默認爲$(basedir}/target,即項目根目錄下的target。
finalName:指定去掉後綴的工程名字,例如:默認爲${artifactId}-${version}。
filters:定義指定filter屬性的位置,例如filter元素賦值filters/filter1.properties,那麼這個文件裏面就能夠定義name=value對,這個name=value對的值就能夠在工程pom中經過${name}引用,默認的filter目錄是${basedir}/src/main/fiters/。
resources:描述工程中各類文件資源的位置 。
<resource> <targetPath>META-INF/plexus</targetPath> <filtering>false</filtering> <directory>${basedir}/src/main/plexus</directory> <includes> <include>configuration.xml</include> </includes> <excludes> <exclude>**/*.properties</exclude> </excludes> </resource>
子標籤介紹:
對於打包插件的相關配置在該模塊配置。樣例以下:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.0</version> <extensions>false</extensions> <inherited>true</inherited> <configuration> <classifier>test</classifier> </configuration> <dependencies>...</dependencies> <executions>...</executions> </plugin>
子標籤說明:
<!--executions 內部標籤示意--> <execution> <id>echodir</id> <goals> <goal>run</goal> </goals> <phase>verify</phase> <inherited>false</inherited> <configuration> <tasks> <echo>Build Dir: ${project.build.directory}</echo> </tasks> </configuration> </execution>
pluginManagement的做用相似於denpendencyManagement,只是denpendencyManagement是用於管理項目jar包依賴,pluginManagement是用於管理plugin。樣例以下:
<pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>pre-process-classes</id> <phase>compile</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>pre-process</classifier> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement>
與pom build裏的plugins區別是,這裏的plugin是列出來,而後讓子pom來決定是否引用。
子pom引用方法: 在pom的build裏的plugins引用:
<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> </plugins>
reporting包含site生成階段的一些元素,某些maven plugin能夠生成reports而且在reporting下配置。reporting裏面的reportSets和build裏面的executions的做用都是控制pom的不一樣粒度去控制build的過程,咱們不單要配置plugins,還要配置那些plugins單獨的goals。樣例以下:
<reporting> <plugins> <plugin> ... <reportSets> <reportSet> <id>sunlink</id> <reports> <report>javadoc</report> </reports> <inherited>true</inherited> <configuration> <links> <link>http://java.sun.com/j2se/1.5.0/docs/api/</link> </links> </configuration> </reportSet> </reportSets> </plugin> </plugins> </reporting>
這塊是一些非必要的設置信息,可是做爲項目來說、版權來說,也會很重要的信息。
name:項目除了artifactId外,能夠定義多個名稱。
description:項目描述。
url:項目url。
inceptionYear:創始年份。
Licenses樣例以下:
<licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses>
organization:組織信息。
developers:開發者信息。樣例以下:
<developers> <developer> <id>hanyahong</id> <name>hanyahong</name> <email>ceo@hanyahong.com</email> <url>http://www.hanyahong.com</url> <organization>hanyahong</organization> <organizationUrl>http://www.hanyahong.com</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>-6</timezone> <properties> <picUrl>http://www.hanyahong.com/test</picUrl> </properties> </developer> </developers>
issueManagement:環境配置信息,樣例以下:
<issueManagement> <system>Bugzilla</system> <url>http://hanyahong.com/</url> </issueManagement>
repositories:倉庫配置信息,pom裏面的倉庫與setting.xml裏的倉庫功能是同樣,主要的區別在於,pom裏的倉庫是個性化的。好比一家大公司裏的setting文件是公用 的,全部項目都用一個setting文件,但各個子項目卻會引用不一樣的第三方庫,因此就須要在pom裏設置本身須要的倉庫地址。
repositories:要成爲maven2的repository artifact,必須具備pom文件在$BASE_REPO/groupId/artifactId/version/artifactId-version.pom
BASE_REPO能夠是本地,也能夠是遠程的。repository元素就是聲明那些去查找的repositories
默認的central Maven repository在http://repo1.maven.org/maven2/。樣例以下:
<repositories> <repository> <releases> <enabled>false</enabled> <updatePolicy>always</updatePolicy> <checksumPolicy>warn</checksumPolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> <checksumPolicy>fail</checksumPolicy> </snapshots> <id>codehausSnapshots</id> <name>Codehaus Snapshots</name> <url>http://snapshots.maven.codehaus.org/maven2</url> <layout>default</layout> </repository> </repositories>
(本文完)
注:本文參考互聯網相關文章整理所得。
更多信息後續分專題講解
http://www.hanyahong.com
https://github.com/hanyahong