cobertura-maven-plugin
カバレッジレポートを出力するcobertura-maven-pluginの設定
/project/build/plugins
<!-- Cobertura --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <executions> <phase>pre-site</phase> <execution> <goals> <goal>clean</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins>
/project/reporting/plugins
<!-- Cobertura --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <formats> <format>xml</format> <format>html</format> </formats> </configuration> </plugin>
formatにxmlを指定しておくと、Hudson上で統計をとってくれたはず。
あとで確認。