我有一个springboot项目。我正在尝试获取该项目的Emma覆盖率报告。
方法1: 我在其上执行了 mvn emma:emma 命令。 Coverage.em文件已生成。我不知道该怎么办
方法2:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<configuration>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
<inherited>true</inherited>
</plugin>
</plugins>
</reporting>
我已将以上代码添加到pom.xml中,并运行了 mvn网站命令。 站点文件夹已创建,其中包含一些内容。我尝试打开index.html,可以看到诸如项目摘要,依赖项等内容的列表。我单击了Project Reports,然后单击了Emma Coverage Report。然后它显示的页面无法显示。它正在尝试访问路径 C:\ Full Stack Development \ ProjectManagement \ target \ site \ emma \ index.html 。艾玛文件夹为空。
方法3:
我使用build标签添加了以下插件。与方法2相同。
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
<inherited>true</inherited>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>instrument</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>