如何在maven中构建模块时构建依赖项目

时间:2014-08-25 07:05:25

标签: maven build dependencies

当子项目由maven构建时,如何构建依赖项目。举个例子,我有2个项目叫A,B。项目B取决于项目A.我想在使用maven构建项目B时构建项目A.我该怎么办?

1 个答案:

答案 0 :(得分:16)

看一下可以传递给mvn的这些选项:

Options:
 -am,--also-make                        If project list is specified, also
                                        build projects required by the
                                        list
 -amd,--also-make-dependents            If project list is specified, also
                                        build projects that depend on
                                        projects on the list

我相信你的情况你必须使用-amd

编辑: 如果你需要通过一个pom。 你只需要创建另一个模块C,它只列出子模块A和B. 当你构建C时,maven reactor会自动构建两个。

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.test</groupId>
  <artifactId>ParentModuleC</artifactId>
  <packaging>pm</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>ParentModuleC</name>
  <dependencies>
  </dependencies>
  <build>
  </build>
  <modules>
    <module>ModuleA</module>
    <module>ModuleB</module>
  </modules>
</project>

在ModuleA和B中,你需要添加:

<parent>
    <groupId>com.test</groupId>
    <artifactId>ParentModuleC</artifactId>
    <version>1.0-SNAPSHOT</version>
</parent>

您的目录结构如下所示:

ParentModuleC
    |-pom.xml
    |----------->ModuleA
    |               |->pom.xml
    |----------->ModuleB
    |               |->pom.xml

看一下这个简单的例子: http://books.sonatype.com/mvnex-book/reference/multimodule.html