我需要將之前的A B C三個模組聚合到一個一個工程中ABC專案中
pom.xml檔案中應該這樣配置
1.修改packaging裡面的配置
<!-- 用於聚合這個專案的時候應該將packaging打包成pom --> <packaging>pom</packaging>
2.將在modules檔案中加入如下
<!-- 該標籤用於對maven進行聚合的作用也就是說將下面三個專案進行打包 --> <modules> <module>../A</module> <module>../B</module> <module>../C</module> </modules>
然後就可以將這個三個專案進行合併
然後maven build 輸入 clean install就可以了
maven 裡面的繼承包(用於對使用多個目錄中使用相同的jar包進行管理)
先建立一個parents工程
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.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.lonecloud.Parent</groupId> <artifactId>Parent</artifactId> <version>0.0.1-SNAPSHOT</version> <!-- 打包型別pom --> <packaging>pom</packaging> <name>Parent</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- 設定junit的版本便於後期管理 --> <junit.version>3.8.1</junit.version> </properties> <!-- 用於對dependency進行管理不會執行 --> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> </project>
然後在相關的包裡面進行引用
<!-- 父工程相對應得工程 --> <parent> <groupId>org.lonecloud.Parent</groupId> <artifactId>Parent</artifactId> <version>0.0.1-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <!-- 省略版本 --> <scope>test</scope> </dependency> </dependencies>