Jenkins 中的 Cobertura 覆盖率始终为 0%

发布于 2024-12-02 18:42:03 字数 1263 浏览 0 评论 0原文

一些事实:

  1. 我将詹金斯与 Cobertura 一起使用。
  2. 我有一个多模块Android项目,一个模块用于测试,另一个是实际的bl。
  3. 我使用的是jdk 1.6.22。
  4. 我正在运行 clean pmd:pmd package cobertura:cobertura
  5. 我的测试模块的 pom 文件包含:
  ...
<dependency>
    <groupId>com.realw</groupId>
    <artifactId>widget</artifactId>
    <type>apk</type>
    <version>0.0.1-SNAPSHOT</version'>
</dependency>
<dependency>
    <groupId>com.realw</groupId>
    <artifactId>widget</artifactId>
    <type>jar</type>
    <scope>provided</scope>
    <version>0.0.1-SNAPSHOT</version>
</dependency></pre>
...
<build>
...
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>cobertura-maven-plugin</artifactId>
    <version>2.5.1</version>
    <configuration>
        <instrumentation>
            <ignores>
                <ignore>com.realw.bl.test.*</ignore>
            </ignores>
        </instrumentation>
    </configuration>
</plugin>

我已经遵循了各种教程并阅读了这里的帖子,但没有运气。

我确信我在配置中遗漏了一些东西。

谢谢。

Some facts:

  1. I'm using jenkins with Cobertura.
  2. I have a multi-module Android project, one module is for testing and the other is the actual bl.
  3. I'm using jdk 1.6.22.
  4. I'm running clean pmd:pmd package cobertura:cobertura
  5. My pom file for the testing module contains:
  ...
<dependency>
    <groupId>com.realw</groupId>
    <artifactId>widget</artifactId>
    <type>apk</type>
    <version>0.0.1-SNAPSHOT</version'>
</dependency>
<dependency>
    <groupId>com.realw</groupId>
    <artifactId>widget</artifactId>
    <type>jar</type>
    <scope>provided</scope>
    <version>0.0.1-SNAPSHOT</version>
</dependency></pre>
...
<build>
...
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>cobertura-maven-plugin</artifactId>
    <version>2.5.1</version>
    <configuration>
        <instrumentation>
            <ignores>
                <ignore>com.realw.bl.test.*</ignore>
            </ignores>
        </instrumentation>
    </configuration>
</plugin>

I've followed the various tutorials and read the posts here, no luck.

I'm sure I'm missing something in the configuration.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文