Maven中dependency和plugins的繼承與約束

bladestone發表於2019-02-26

Maven的父子專案

父子專案核心點是在於通過將一個大專案拆分為若干子模組,每個模組以子專案的形式存在,不同的子專案共享父專案的設定與約束。所以,父專案承擔的角色是建立各個子專案的約束和一致的基礎。

父專案配置

<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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.parent.project</groupId>
    <artifactId>project-artifiact</artifactId>
    <version>0.0.1.7-SNAPSHOT</version>
    <packaging>pom</packaging>
 
   <!-- dependency in inheritance -->
   <depdencies>
     <dependency>
          <groupId>org.apache.commons</groupId>
          <artifactId>commons-lang3</artifactId>
          <version>3.8.1</version>
      </dependency>
   </dependencies>

  <!-- depdency constraints -->
   </dependencies>
   <dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactid>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactid>log4j</artifactId>
      <version>1.2.16</version>
    </dependency>
  </dependencies>
</dependencyManagement>

<!-- plugin constraints -->
<pluginManagement>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.1</version>
            <configuration>
                <attach>true</attach>
            </configuration>
            <executions>
                <execution>
                    <phase>compile</phase>
                    <goals>
                        <goal>jar</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</pluginManagement>

<modules>
   <module>A</module>
   <module>B</module>
</modules>

在父專案中,其packaging值設定為pom,表示其定義為定義和描述專案的結構,而非真實的專案。

子專案定義

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>parent-project</artifactId>
        <groupId>com.parent.project</groupId>
        <version>0.0.1.7-SNAPSHOT</version>
    </parent>
    <artifactId>child-project</artifactId>
    <version>0.0.1.7-SNAPSHOT</version>
    <packaging>jar</packaging>
    ...........

dependencies

在上述示例中,定義了dependencies的節點,這個節點中定義的dependency將被其子專案繼承,可以在子專案預設載入進來。

dependencyManagement

在此節點中定義的dependency對於子專案而言,有版本上的約束,在子專案中,如果有指定版本,則預設使用父專案中約定的版本。

示例:

  <dependency>
     <groupId>junit</groupId>
     <artifactid>junit</artifactId>
</dependency>
<dependency>
     <groupId>log4j</groupId>
     <artifactid>log4j</artifactId>
</dependency>

其版本號預設使用父專案的版本號

pluginManagement

在此節點中定義的dependency對於子專案而言,有版本上的約束,在子專案中,如果有指定版本,則預設使用父專案中約定的版本。
示例:

<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
    </plugin>
</plugins>

其預設使用父專案中規定的版本號。當然在子專案中也可以覆蓋父專案中的版本約定,自行指定所需要的版本號。

總結

在父子專案結構中,子專案以modules的形式在父專案中註冊,子專案實施具體的實現功能。對於不同的子專案共享父專案中的設定與約束,方便團隊開發。

相關文章