【MAVEN】maven系列--pom.xml標籤詳解
pom檔案作為MAVEN中重要的配置檔案,對於它的配置是相當重要。檔案中包含了開發者需遵循的規則、缺陷管理系統、組織、licenses、專案資訊、專案依賴性等。下面將重點介紹一下該檔案的基本組成與功能。
標籤預覽
<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/customs
artifactId:專案的通用名稱
version:專案的版本
packaging:打包機制,如pom,jar,maven-plugin,ejb,war,ear,rar,par
name:使用者描述專案的名稱,無關緊要的東西,非必要
url:開發團隊官方地址 ,非必要
classifer:分類
對於以上基本標籤,groupId,artifactId,version,packaging作為專案唯一座標
POM依賴關係設定
對於POM檔案中的關係,主要有依賴,繼承,合成等關係。
依賴關係
<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:用來指定當前包的依賴範圍
- compile(編譯範圍),是預設的範圍,編譯範圍依賴在所有的classpath中可用,同時它們也會被打包。
- provided(已提供範圍),只有在當JDK或者一個容器已提供該依賴之後才使用。
- runtime(執行時範圍),在執行和測試系統的時候需要。
- test(測試範圍),在一般的 編譯和執行時都不需要。
- system(系統範圍),與provided類似
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}
MAVEN構建設定
這部分主要是對專案的構建過程進行配置,包括打包的方式、外掛的安裝等。配置如下所示:
<!-- 構建管理 -->
<build>
<!--構建工具外掛管理-->
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
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>
子標籤介紹:
- targetPath:指定build資源具體目錄,預設是base directory。
- filtering:指定是否將filter檔案的變數值在這個resource檔案有效。即上面說的filters裡定義的*.property檔案。例如上面就指定那些變數值在configuration檔案無效,設定為false。
- directory:指定屬性檔案的目錄,build的過程需要找到它,並且將其放到targetPath下,預設的directory是${basedir}/src/main/resources。
- includes:指定包含檔案的patterns,符合樣式並且在directory目錄下的檔案將會包含進project的資原始檔。
- excludes:指定不包含在內的patterns。
- testResources:包含測試資源元素。預設的測試資源路徑是${basedir}/src/test/resources,測試資源是不部署的。
plugins配置
對於打包外掛的相關配置在該模組配置。樣例如下:
<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>
子標籤說明:
- extensions:true or false, 決定是否要load這個plugin的extensions,預設為true。
- inherited:是否讓子pom繼承,ture or false 預設為true。
- configuration:通常用於私有不開源的plugin,不能夠詳細瞭解plugin的內部工作原理,但使plugin滿足的properties
- dependencies:與pom基礎的dependencies的結構和功能都相同,只是plugin的dependencies用於plugin,而pom的denpendencies用於專案本身。
- dependencies:排除一些用不到的dependency或者修改dependency的版本等。
- executions:plugin也有很多個目標,每個目標具有不同的配置,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配置
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設定
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>[email protected]</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
相關推薦
【MAVEN】maven系列--pom.xml標籤詳解
pom檔案作為MAVEN中重要的配置檔案,對於它的配置是相當重要。檔案中包含了開發者需遵循的規則、缺陷管理系統、組織、licenses、專案資訊、專案依賴性等。下面將重點介紹一下該檔案的基本組成與功能。 標籤預覽 <project> <modelVersion>4.0.0<
maven POM.xml 標籤詳解
pom作為專案物件模型。通過xml表示maven專案,使用pom.xml來實現。主要描述了專案:包括配置檔案;開發者需要遵循的規則,缺陷管理系統,組織和licenses,專案的url,專案的依賴性,以及其他所有的專案相關因素。 <project xmlns="ht
maven的pom.xml標籤詳解
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/200
maven POM.xml 標籤詳解
<span style="padding:0px; margin:0px"><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta
Maven的pom.xml 標籤詳解
轉載:https://blog.csdn.net/sunzhenhua0608/article/details/32938533pom作為專案物件模型。通過xml表示maven專案,使用pom.xml來實現。主要描述了專案:包括配置檔案;開發者需要遵循的規則,缺陷管理系統,組
Maven系列2--pom.xml 配置詳解
<project xmlns="http://maven.apache.org/POM/4.0.0 " xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance " xsi:schemaLocat
maven核心:pom.xml檔案詳解
什麼是pom? pom作為專案物件模型。通過xml表示maven專案,使用pom.xml來實現。主要描述了專案:包括配置檔案;開發者需要遵循的規則,缺陷管理系統,組織和licenses,專案的url,專案的依賴性,以及其他所有的專案相關因素。 快
maven的pom.xml配置詳解
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.
史上最全的Maven Pom檔案標籤詳解
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
Maven pom.xml檔案詳解
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.a
史上最全的maven的pom.xml檔案詳解
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://m
Maven--pom.xml 配置詳解
pom作為專案物件模型。通過xml表示maven專案,使用pom.xml來實現。主要描述了專案:包括配置檔案;開發者需要遵循的規則,缺陷管理系統,組織和licenses,專案的url,專案的依賴性,以及其他所有的專案相關因素。<project> <mod
SSM框架配合Maven時,pom.xml配置詳解。
這篇部落格針對我這樣的小白。 一. pom.xml有什麼用?: 我們知道maven(什麼是maven請移步https://www.cnblogs.com/whgk/p/7112560.html) 可以給我們管理jar包和其他資源(jar包:別人寫好的輪子,我們負責呼叫)
maven中全域性配置檔案settings.xml及專案pom.xml的詳解完整版
maven中全域性配置檔案settings.xml及專案pom.xml的詳解 一、apache maven的簡介 Apache Maven,是一個軟體(特別是Java軟體)專案管理及自動構建工具,由Apache軟體基金會所提供。基於專案物件
Maven的pom.xml檔案詳解
快速預覽 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
maven中全域性配置檔案settings.xml及專案pom.xml的詳解3
(2) properties 作用:對應profile的擴充套件屬性列表。 maven屬性和ant中的屬性一樣,可以用來存放一些值。這些值可以在pom.xml中的任何地方使用標記${X}來使用,這裡X是指屬性的名稱。屬性有五種不同的形式,並且都能在se
maven專案中pom.xml配置詳解大全
<!-- 描述了資源的目標路徑。該路徑相對target/classes目錄(例如${project.build.outputDirectory})。舉個例 子,如果你想資源在特定的包裡(org.apache.maven.messages),你就必須該元素設定為org/apache/maven /
最全的maven的pom.xml檔案詳解
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="h
maven工程pom檔案標籤詳解
maven是一個軟體工程(Software Project)管理工具。 對於maven來說,一個軟體工程的唯一標識(也叫maven座標)是由groupId(開發者)、artifactId(開發的產品)、version(產品版本) 共同決定的。每個maven管理的工程都有一個
Maven pom.xml 配置詳解
什麼是pom? pom作為專案物件模型。通過xml表示maven專案,使用pom.xml來實現。主要描述了專案:包括配置檔案;開發者需要遵循的規則,缺陷管理系統,組織和licenses,專案的url,專案的依賴性,以及其他所有的專案相關因素。pom.xml 配置檔案&l