詹金斯的Cobertura总是获得0%的报道

时间:2011-09-02 11:32:39

标签: android jenkins cobertura

一些事实:

  1. 我正在和Cobertura一起使用jenkins。
  2. 我有一个多模块的Android项目,一个模块用于测试,另一个模块是实际的bl。
  3. 我正在使用jdk 1.6.22。
  4. 我正在运行干净的pmd:pmd包cobertura:cobertura
  5. 我的测试模块的pom文件包含:
  6. 
    
    
      ...
    <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>
    

    我已经按照各种教程阅读了这里的帖子,没有运气。

    我确定我在配置中遗漏了一些内容。

    感谢。

0 个答案:

没有答案