我是maven的新手,我們的項目有幾個模塊。我的目標是爲整個項目(包含所有模塊)生成一份覆蓋率報告。下面是根據項目的pom.xml所有模塊的EMMA代碼覆蓋
<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>1.0.0</modelVersion>
<groupId>com.xx.test</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>test</name>
<modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
<module>module4</module>
<module>module5</module>
</modules>
<build>
.
.
.
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
</plugin>
</plugins>
</reporting>
</project>
正如你看到的上面,我添加了艾瑪的插件並執行以下我們的粗略框架:MVN艾瑪:艾瑪 這產生了對下每個模塊的各個覆蓋率報告該目標稱爲「目標」。有沒有辦法將所有這些報告合併到一個報告中? 任何指針..?