当 Maven 父 pom 启用 Cobertura 时,如何在子项目中禁用 Cobertura?
我有许多从父 pom 继承的项目。我通过 Jenkins CI 构建中激活的 Maven 配置文件在父级中启用 Cobertura 覆盖率报告。但是,我想为一个子项目禁用Cobertura(同时从父pom获取其他所有内容)。实现这一目标的最佳方法是什么?
我的第一个想法是使用 :
<configuration>
<instrumentation>
<excludes>
<exclude>**/*.class</exclude>
</excludes>
</instrumentation>
但我宁愿跳过整个步骤而不生成“空”覆盖率报告。
I have many projects which inherit from a parent pom. I enable Cobertura coverage reports in the parent via a Maven profile that is activated in our Jenkins CI builds. However, I want to disable Cobertura for one child project (while getting everything else from the parent pom). What is the best way to achieve this?
My first thought is to use :
<configuration>
<instrumentation>
<excludes>
<exclude>**/*.class</exclude>
</excludes>
</instrumentation>
but I'd rather just skip the entire step and not generate an "empty" Coverage report.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 cobertura-maven-plugin 中记录的“跳过”配置项。
Use the 'skip' configuration item as documented cobertura-maven-plugin.