为了账号安全,请及时绑定邮箱和手机立即绑定

Maven Jacoco 插件不生成报告

Maven Jacoco 插件不生成报告

HUX布斯 2021-06-08 17:49:04
我一直在 Java Eclipse 中使用 Maven 项目为学校工作。我一直在使用 Eclemma 获取代码覆盖率数据,但我的教授想从命令行运行我的代码并从那里获取代码覆盖率报告。我一直在尝试让 Jacoco 工作,但我之前真的从未使用过 Maven 或 Pom.xmls,我很迷茫。这是我现在的样子<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>4.0.0</modelVersion>  <groupId> yada yada yada </groupId>  <artifactId> yada yada yada </artifactId>  <version>0.0.1-SNAPSHOT</version>  <dependencies>    <dependency>      <groupId>junit</groupId>      <artifactId>junit</artifactId>      <version>4.12</version>      <scope>test</scope>    </dependency>    <dependency>      <groupId>org.jacoco</groupId>      <artifactId>org.jacoco.ant</artifactId>      <version>0.8.1</version>    </dependency>  </dependencies>  <build>    <pluginManagement>      <plugins>        <plugin>          <groupId>org.jacoco</groupId>          <artifactId>jacoco-maven-plugin</artifactId>          <version>0.8.1</version>          <executions>            <execution>              <id>default-prepare-agent</id>              <goals>                <goal>prepare-agent</goal>              </goals>            </execution>            <execution>              <id>post-integration-test</id>              <phase>post-integration-test</phase>              <goals>                <goal>report</goal>              </goals>              <configuration>                <dataFile>target/jacoco.exec</dataFile>                <outputDirectory>target/jacoco-ut</outputDirectory>              </configuration>            </execution>当我执行$> mvn clean test jacoco:report或者只是jacoco:报告,我明白了[INFO] --- jacoco-maven-plugin:0.8.1:report (default-cli) @ MyFileLocation ---[INFO] Skipping JaCoCo execution due to missing execution data file.不知道此时该怎么办...
查看完整描述

2 回答

?
BIG阳

TA贡献1859条经验 获得超6个赞

要使用 JaCoCo 记录覆盖率,您需要使用 JaCoCo Java 代理执行测试。

根据https://www.jacoco.org/jacoco/trunk/doc/prepare-agent-mojo.html

准备一个指向 JaCoCo 运行时代理的属性,该代理可以作为 VM 参数传递给被测应用程序。

默认情况下,它会设置argLine由 选择的属性maven-surefire-plugin,但是似乎您实际上maven-surefire-plugin并没有使用,而是使用了 的java目标exec-maven-plugin,其中

因此,请确保在您的测试期间使用 JaCoCo 代理,例如使用exec目标exec-maven-plugin并传递argLine给它 - 请参阅https://www.mojohaus.org/exec-maven-plugin/exec-mojo.html#arguments


查看完整回答
反对 回复 2021-06-17
?
蛊毒传说

TA贡献1895条经验 获得超3个赞

检查插件


<plugins>

        <plugin>

            <groupId>org.apache.maven.plugins</groupId>

            <artifactId>maven-compiler-plugin</artifactId>

            <version>3.2</version>

            <configuration>

                <source>1.8</source>

                <target>1.8</target>

            </configuration>

        </plugin>


        <plugin>

            <groupId>org.sonarsource.scanner.maven</groupId>

            <artifactId>sonar-maven-plugin</artifactId>

            <version>3.4.0.905</version>

        </plugin>


        <plugin>

            <groupId>org.jacoco</groupId>

            <artifactId>jacoco-maven-plugin</artifactId>

            <version>0.7.9</version>

            <configuration>

                <destFile>${sonar.jacoco.reportPath}</destFile>

                <append>true</append>

            </configuration>

            <executions>

                <execution>

                    <id>agent</id>

                    <goals>

                        <goal>prepare-agent</goal>

                    </goals>

                </execution>

            </executions>

        </plugin>

    </plugins>

仅添加此插件


 <plugin>

        <groupId>org.jacoco</groupId>

        <artifactId>jacoco-maven-plugin</artifactId>

        <version>0.7.9</version>

        <configuration>

            <destFile>${sonar.jacoco.reportPath}</destFile>

            <append>true</append>

        </configuration>

        <executions>

            <execution>

                <id>agent</id>

                <goals>

                    <goal>prepare-agent</goal>

                </goals>

            </execution>

        </executions>

    </plugin>


查看完整回答
反对 回复 2021-06-17
  • 2 回答
  • 0 关注
  • 1657 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信