0

我们有以下布局的项目

  1. 父母
    • 应用程序
    • 仪器仪表

核心模块中有 cobertura 插件。我能够从命令行毫无问题地生成报告(XML 和 HTML)我什至能够在 Jenkins 的工作区中看到它们。但是我无法将这些报告与 Jenkins Cobertura 插件相关联。根据 Jenkins 文档的默认设置是

**/target/site/cobertura/coverage.xml

由于子模块中生成的报告,这不起作用。我试过以下

core/target/site/cobertura/coverage.xml
/core/target/site/cobertura/coverage.xml
**/core/target/site/cobertura/coverage.xml
4

2 回答 2

1

好的,问题是我使用 cobertura 插件作为

<build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>cobertura-maven-plugin</artifactId>
          <version>2.5.1</version>
          <configuration>
            <formats>
              <format>xml</format>
              <format>html</format>
            </formats>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>

相反,它应该是

<build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <formats>
            <format>xml</format>
            <format>html</format>
          </formats>
          <check/>
        </configuration>
        <executions>
          <execution>
            <phase>clean</phase>
            <goals>
              <goal>cobertura</goal>
            </goals>
          </execution>
        </executions>
      </plugin> 
  </build>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <version>2.5.1</version>
      </plugin>
    </plugins> 
  </reporting>

在此之后,我将 Jenkins Cobertura 插件指向core/target/site/cobertura/coverage.xml

于 2012-08-13T12:07:20.297 回答
0

将以下行添加到您的应用程序目标:(在 jenkins 中配置应用程序部分)

cobertura:cobertura -Dcobertura.report.format=xml

Cobertura xml 报告模式:
*/target/site/cobertura/.xml

pom.xml 更改:

<reporting>
<plugins>
    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>cobertura-maven-plugin</artifactId>
        <version>2.6</version>
        <configuration>
            <formats>
                <format>html</format>
                <format>xml</format>
            </formats>
        </configuration>
    </plugin>
</plugins>

于 2014-06-05T09:08:51.993 回答