我需要一些帮助,为maven项目设置代码质量插件。
我有一个多模块的项目。虽然我在构建过程中配置了pmd
、checkstyle
、findbugs
和cobertura
,并且可以为每个插件生成xml报告,但在我的项目中配置声呐插件面临一些挑战。
我不知道如何处理这个问题:
pmd
、checkstyle
、findbugs
和cobertura
插件运行声纳,如何将它们配置为只针对特定的包运行或使findbugs
分析com.mycompany.-
结构。下面我要复习一下我的个人资料。任何帮助都将受到极大的感谢。
这在我的根pom构建部分的plugins部分中:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<instrumentation>
<includes>
<include>com/mycompany/**/*.class</include>
</includes>
</instrumentation>
<formats>
<format>xml</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.6</targetJdk>
<includes>
<include>com/mycompany/**/*.java</include>
</includes>
<excludeRoots>
<excludeRoot>target/generated-sources/*</excludeRoot>
</excludeRoots>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<onlyAnalyze>com.mycompany.-</onlyAnalyze>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<includes>com/mycompany/**/*.java</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
发布于 2012-08-13 02:19:42
1)在执行声呐时,应该重用这些插件生成的报告吗?如果是这样的话,我的声纳插件配置应该是什么?
Sonar不提供重用这些插件生成的报告的机制。您可以通过质量概况配置规则。
2)如果我运行带有嵌入式pmd、校验样式、findbug和cobertura插件的声纳,如何配置它们只运行特定的包或在"com.mycompany.-“结构上进行findbug分析。
声纳web UI允许您指定对findbug过滤器的排除。科伯图拉也是如此。不确定pmd检查方式。
3)最后,我无法得到声纳的覆盖报告,无论是在声纳的外部还是在声纳内部。
这可能是由于jacoco是默认代码覆盖引擎。。您可以按照指示运行mvn clean verify/install sonar:sonar
,并查看它是否有效。
https://stackoverflow.com/questions/11910604
复制相似问题