私はすでにMaven経由でサイト生成を行っているいくつかのプロジェクトを持っていますが、それらにcoberturaレポートを統合したいと思いますが、実行しているようなMavenの目標は、私はそれを見て、サイト内のCoberturaレポートを含みます。リポジトリにpom変更をコミットしてサイトが生成される前に、それらが正しく生成されていることを確認したい。Coberturaレポートを含むMavenサイトの生成
以下は、私はMavenのPOMS(親とモジュール)に追加したものですが、私はmvn site:run
を実行したときに私が見るサイトはCoberturaのレポートが含まれていません:
<project>
...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<check>
<haltOnFailure>false</haltOnFailure>
<regexes>
<regex>
<pattern>parent-package-name-here.*</pattern>
<branchRate>80</branchRate>
<lineRate>80</lineRate>
</regex>
</regexes>
</check>
<instrumentation>
<includes>
<include>parent-package-name-here/**/*.class</include>
</includes>
</instrumentation>
</configuration>
<executions>
<execution>
<id>clean</id>
<phase>pre-site</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
<execution>
<id>instrument</id>
<phase>site</phase>
<goals>
<goal>instrument</goal>
<goal>cobertura</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
...
</project>
coberturaレポートでサイトを生成するには?または、サイトの世代にcoberturaのレポートを含めるには、(追加で)何を追加する必要がありますか?
これをMavenのバグトラッカーのバグとして報告する必要があります。そうしないと、それが処理されません。 –