来自pluginManagement的Maven插件继承

时间:2013-08-07 21:00:24

标签: maven build maven-2

我有一个父pom.xml,它定义了maven-ear-plugin的默认配置

<pluginManagement>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-ear-plugin</artifactId>
            <version>2.8</version>
            <configuration>
                <modules>
                    <jarModule>
                        <groupId>com.test</groupId>
                        <artifactId>artifact1</artifactId>
                    </jarModule>
                    <jarModule>
                        <groupId>com.test</groupId>
                        <artifactId>artifact2</artifactId>
                    </jarModule>
                </modules>
            </configuration>
        </plugin>
    </plugins>
</pluginManagement>

在儿童pom中,我在<plugins>部分定义了maven-ear-plugin

<plugin>
    <artifactId>maven-ear-plugin</artifactId>
    <executions>
        <execution>
            <id>default-ear</id>
            <phase>package</phase>
            <goals>
                <goal>ear</goal>
            </goals>
            <configuration>
                <earSourceDirectory>EarContent</earSourceDirectory>
                <defaultLibBundleDir>APP-INF/lib</defaultLibBundleDir>
                <modules>
                    <jarModule>
                        <groupId>com.test</groupId>
                        <artifactId>artifact3</artifactId>
                    </jarModule>
                </modules>
            </configuration>
        </execution>
    </executions>
</plugin>

我的目的是在耳朵中包含所有3个jar文件artifact1,artifact2和artifact3。但是,在构建之后,仅包含子pom.xml中定义的artifact3。所以看起来默认情况下,子pom.xml中的<modules>定义会覆盖父pom中定义的内容,而不是合并。实际上,如果我删除了子pom.xml中的整个<modules>部分,那么在构建之后将包含artifact1和artifact2。

我的问题是是否有办法包含父pom和child pom中定义的所有jar模块。我有几个耳朵项目,所有这些都需要包含相同的jar模块和一些自己的jar模块。我试图将常用的jar模块集移动到父模块,以便它们不会在每个子pom.xml中重复。

更新以澄清我的项目关系:

parent pom.xml (define maven-ear-plugin in the pluginManagement section)
  -- project1 pom.xml (multi-module project)
      -- myJar-proj1 
      -- myWeb-proj1
      -- myEar-proj1 (define maven-ear-plugin in the <build> section)    
  -- project2 pom.xml (multi-module project)
      -- myJar-proj2
      -- myWeb-proj2
      -- myEar-proj2 (define maven-ear-plugin in the <build> section)

1 个答案:

答案 0 :(得分:5)

为了实现合并行为,您应该将maven-ear-plugin under the plugins标记放在父pom中(而不是under pluginManagement)。

pom

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-ear-plugin</artifactId>
            <version>2.8</version>
            <configuration>
                <modules>
                    <jarModule>
                        <groupId>com.test</groupId>
                        <artifactId>artifact1</artifactId>
                    </jarModule>
                    <jarModule>
                        <groupId>com.test</groupId>
                        <artifactId>artifact2</artifactId>
                    </jarModule>
                </modules>
            </configuration>
        </plugin>
    </plugins>
</build>

修改

在OP明确的项目结构之后:子项目中combine.children="append"元素的属性modules

<modules combine.children="append">
    <jarModule>
        <groupId>com.test</groupId>
        <artifactId>artifact3</artifactId>
    </jarModule>
</modules>

父级仍应仅在pluginManagement中定义插件。