我正在尝试整合jacoco。我使用以下配置成功地将其与单元测试集成在一起
<plugin>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
<goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
<goals>
</execution>
</executions>
</plugin>
我用准备代理整合替换了准备代理目标,但我看不到任何报告。
我看到一条消息说由于缺少类目录而跳过jacoco执行。
我的集成测试是在一个单独的模块中。
任何人都可以帮我解决如何为我的集成测试配置jacoco吗?
我正在使用com.sun.jersey.jersey-test-framework中的jersey-test-framework-grizzly2 1.12。 (我知道这是一个非常旧版的球衣测试框架,但这是一个遗留/旧应用程序)