当 Maven 父 pom 启用 Cobertura 时,如何在子项目中禁用 Cobertura?

发布于 2024-12-09 14:53:00 字数 534 浏览 0 评论 0原文

我有许多从父 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泡沫很甜 2024-12-16 14:53:00

使用 cobertura-maven-plugin 中记录的“跳过”配置项。

Use the 'skip' configuration item as documented cobertura-maven-plugin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文