1

只是想知道使用 maven 插件启动 jacoco 代理并向 surefire 添加一些参数是否有用?它会启动 Jacoco 两次吗?

例子 :

        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>${jacoco.version}</version>
            <executions>
                <execution>
                    <phase>pre-integration-test</phase>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                </execution>
            </executions>           
        </plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-javaagent:${sonar.jacoco.jar}=destfile='${sonar.jacoco.reportPath}'</argLine>
4

2 回答 2

2

他们提供了Maven 使用示例,因此似乎不需要 Surefire 的其他参数。

于 2012-06-05T09:31:48.563 回答
1

我不知道你${jacoco.version}是什么,但下面的代码片段对我有用。

你不需要为 surefire 插件提供额外的参数。

该版本必须是在Maven 存储库中声明的版本(假设您没有在本地安装依赖项或使用其他/自定义存储库):

        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>0.5.7.201204190339</version>
            <executions>
                <execution>
                    <id>jacoco-initialize</id>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
于 2012-06-05T13:30:59.107 回答