Maven聚合與繼承

weixin_34194087發表於2017-06-06

一、聚合
為了能夠使用一條命令就能構建 account-email和 account-persist兩個模組,我們需要建立一個額外的名為 account-aggregator的模組,然後通過該模組構建整個專案的所有模組。 account-aggregator本身也是個 Maven專案,它的 POM如下


<project>  
    <modelVersion>4.0.0</modelVersion>  
    <groupId>com.juvenxu.mvnbook.account</groupId>  
    <artifactId>account-aggregator</artifactId>  
    <version>1.0.0-SNAPSHOT</version>  
    <packaging> pom </packaging>  
    <name>Account Aggregator</name>  
     <modules>  
        <module>account-email</module>  
        <module>account-persist</module>  
     </modules>  
</project>  

注意:packaging的型別為pom module的值是一個以當前POM**為主目錄的相對路徑。

二、繼承
可宣告父POM供子 POM繼承
父模組POM如下:


<project>  
    <modelVersion>4.0.0</modelVersion>  
    <groupId>com.juvenxu.mvnbook.account</groupId>  
    <artifactId> account-parent </artifactId>  
    <version>1.0.0-SNAPSHOT</version>  
    <packaging>pom</packaging>  
    <name>Account Parent</name>  
</project>  

子模組宣告繼承如下:


<project>  
    <modelVersion>4.0.0</modelVersion>  
      
    < parent >  
        <groupId>com.juvenxu.mvnbook.account</groupId>  
        <artifactId> account-parent </artifactId>  
        <version>1.0.0-SNAPSHOT</version>  
        < relativePath >../account-parent/pom.xml</ relativePath>  
    </ parent >  
      
    <artifactId> account-email </artifactId>  
    <name>Account Email</name>  
  ...  
</project>  

最後,同樣還需要把 account-parent加入到聚合模組account-aggregator中。聚合的 POM如下:


<project>  
    <modelVersion>4.0.0</modelVersion>  
    <groupId>com.juvenxu.mvnbook.account</groupId>  
    <artifactId>account-aggregator</artifactId>  
    <version>1.0.0-SNAPSHOT</version>  
    <packaging> pom </packaging>  
    <name>Account Aggregator</name>  
    <modules>  
        <module>account-email</module>  
        <module>account-persist</module>  
        <module> account-parent</module>  
    </modules>  
</project>  

注意:
1、子模組沒有宣告groupId和version, 這兩個屬性繼承至父模組。但如果子模組有不同與父模組的 groupId、version ,也可指定;
2、不應該繼承artifactId,如果groupId ,version,artifactId 完全繼承的話會造成座標衝突;另外即使使用不同的 groupId或version,同樣的 artifactId也容易產生混淆。
3、使用繼承後 parent也必須像自模組一樣加入到聚合模組中。也就是在在聚合模組的 pom中加入<module>account-parent</module>

三、聚合與繼承的關係
區別
1.對於聚合模組來說,它知道有哪些被聚合的模組,但那些被聚合的模組不知道這個聚合模組的存在。
2.對於繼承關係的父 POM來說,它不知道有哪些子模組繼承與它,但那些子模組都必須知道自己的父 POM是什麼。


共同點
1.聚合 POM與繼承關係中的父POM的 packaging都是pom
2.聚合模組與繼承關係中的父模組除了 POM之外都沒有實際的內容。

3362699-eb211a4efe8e0678.png
比較

注:在現有的實際專案中一個 POM既是聚合POM,又是父 POM,這麼做主要是為了方便

四、Maven可繼承的POM 元素


groupId :專案組 ID ,專案座標的核心元素;  
version :專案版本,專案座標的核心元素;  
description :專案的描述資訊;  
organization :專案的組織資訊;  
inceptionYear :專案的創始年份;  
url :專案的 url 地址  
develoers :專案的開發者資訊;  
contributors :專案的貢獻者資訊;  
distributionManagerment :專案的部署資訊;  
issueManagement :缺陷跟蹤系統資訊;  
ciManagement :專案的持續繼承資訊;  
scm :專案的版本控制資訊;  
mailingListserv :專案的郵件列表資訊;  
properties :自定義的 Maven 屬性;  
dependencies :專案的依賴配置;  
dependencyManagement :醒目的依賴管理配置;  
repositories :專案的倉庫配置;  
build :包括專案的原始碼目錄配置、輸出目錄配置、外掛配置、外掛管理配置等;  
reporting :包括專案的報告輸出目錄配置、報告外掛配置等。  

相關文章