有
我有一个父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)
答案 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
中定义插件。