1

我在这里感到困惑,我正在运行 maven 3、java 1.6 并配置了一个 maven 项目,一切正常,包括所有单元测试。现在我来添加 Jacoco 插件,这样配置

        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>0.5.5.201112152213</version>
            <configuration>
                <destfile>${basedir}/target/coverage-reports/jacoco-unit.exec</destfile>
                <datafile>${basedir}/target/coverage-reports/jacoco-unit.exec</datafile>
            </configuration>
            <executions>
                <execution>
                    <id>jacoco-initialize</id>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                </execution>
                <execution>
                    <id>jacoco-site</id>
                    <phase>package</phase>
                    <goals>
                        <goal>report</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

现在,当我尝试运行 mvn clean package 时,没有一个单元测试通过并且根本没有覆盖率报告。

谁能指出我哪里出错了?

提前致谢

4

0 回答 0