我的多模块项目具有以下结构:
parent
module 1 <-- inherits from parent via <relativePath>../parent/pom.xml</relativePath>
module 2 <-- inherits from parent via <relativePath>../parent/pom.xml</relativePath>
aggregator <-- aggregates modules with <modules><module>
聚合器调用以下插件:
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<destFile>some path</destFile>
</configuration>
</execution>
</executions>
<configuration>
<append>true</append>
</configuration>
</plugin>
</plugins>
</build>
该插件是为聚合器调用的,但我想为所有模块(1 和 2)调用它。
我知道我可以更改父 pom,但我想保持干净(该更改是更大实现的一部分)。
是否可以以这样的方式配置插件,它调用所有模块(就像被放置在父 pom 中一样)?