只是想知道使用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>
答案 0 :(得分:2)
他们提供Maven usage example,因此似乎不需要Surefire的其他参数。
答案 1 :(得分:1)
我不知道您的${jacoco.version}
是什么,但以下代码段对我有效。
您无需为surefire插件提供其他参数。
版本必须是Maven Repository中声明的版本(假设您没有在本地安装依赖项或使用其他/自定义存储库):
<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>