maven配置pom文件添加PMD檢查,添加checkStyle檢查,JDepend等檢查功能

1、PMD是掃描 Java 源碼並查找如下潛在問題: 
     從未用過的局部變量 
     空捕捉塊(catch block) 
      從未用過的參數 
     空if聲明 
     重複的導入聲明 
    從未用過的私有方法 
     孤立的類 
     短型或長型變量及方法名 css

加入PMD檢查, 如下代碼若是在reporting節點中加入則在mvn site中執行,若是在build節點中加入,則在build的時候自動運行檢查。詳細配置參考pmd插件使用說明html

 	<plugins>
		<plugin>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-pmd-plugin</artifactId>
			<version>2.5</version>
		</plugin>
	</plugins>

加入 checkstyle 檢查,詳細配置參考checkstyle插件使用說明,一樣注意放置在reporting和build節點中的區別(全部報表類插件都要一樣注意):java

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-checkstyle-plugin</artifactId>
	<version>2.5</version>
</plugin>

加入 simian 的支持,simian是一個支持代碼類似度檢查的工具,目前有maven插件,也有checkstyle的插件。它不只能夠檢查java,甚至能夠支持文本文件的檢查。詳細幫助信息參考這裏。simian 的 maven插件在這裏apache

<plugins>	           
	    <plugin>	               
		<groupId>org.codehaus.mojo</groupId>               
		<artifactId>simian-maven-plugin</artifactId>               
		<version>1.6.1</version>	           
	    </plugin>        
	</plugins>

加入 jdepend 檢查,詳細配置參考jdepend使用說明maven

<plugin>
	<groupId>org.codehaus.mojo</groupId>
	<artifactId>jdepend-maven-plugin</artifactId>
	<version>2.0-beta-2</version>
</plugin>

加入 findbugz 檢查,詳細配置參考findbugz使用說明工具

      <plugin>         <groupId>org.codehaus.mojo</groupId>         <artifactId>findbugs-maven-plugin</artifactId>         <version>2.0.1</version>       </plugin>

加入javadoc生成,詳細配置參考javadoc usage測試

      <plugin>         <groupId>org.apache.maven.plugins</groupId>         <artifactId>maven-javadoc-plugin</artifactId>         <version>2.7</version>         <configuration>           ...         </configuration>       </plugin>

加入 jxr 支持,JXR是一個生成java代碼交叉引用和源代碼的html格式的工具,詳細配置信息參考jxr usage。注意,jxr沒有必要在build階段運行。ui

  <reporting>     <plugins>       <plugin>         <groupId>org.apache.maven.plugins</groupId>         <artifactId>maven-jxr-plugin</artifactId>         <version>2.1</version>       </plugin>     </plugins>   </reporting>

加入 Cobertura 支持,它是一個代碼覆蓋率工具,能夠用來評估具備相應測試的源代碼的比率。詳細幫助在這裏。另一個功能類似的軟件是EMMA,詳細的幫助在這裏。兩個產品的比較文章在這裏,我的傾向於都要用,由於給出的指標不同,都有參考做用。spa

      <plugin>         <groupId>org.codehaus.mojo</groupId>         <artifactId>cobertura-maven-plugin</artifactId>         <version>2.4</version>         <configuration>           <check>             <branchRate>85</branchRate>             <lineRate>85</lineRate>             <haltOnFailure>true</haltOnFailure>             <totalBranchRate>85</totalBranchRate>             <totalLineRate>85</totalLineRate>             <packageLineRate>85</packageLineRate>             <packageBranchRate>85</packageBranchRate>             <regexes>               <regex>                 <pattern>com.example.reallyimportant.*</pattern>                 <branchRate>90</branchRate>                 <lineRate>80</lineRate>               </regex>               <regex>                 <pattern>com.example.boringcode.*</pattern>                 <branchRate>40</branchRate>                 <lineRate>30</lineRate>               </regex>             </regexes>           </check>         </configuration>         <executions>           <execution>             <goals>               <goal>clean</goal>               <goal>check</goal>             </goals>           </execution>         </executions>       </plugin>
  <reporting>     ...     <plugins>       ...       <plugin>         <groupId>org.codehaus.mojo</groupId>         <artifactId>emma-maven-plugin</artifactId>         <version>1.0-alpha-3-SNAPSHOT</version>       </plugin>       ...     </plugins>     ...   </reporting>

添加 javaNCSS 插件,它是一個java代碼的度量工具,詳細參考在這裏.net

  <reporting>     <plugins>       <plugin>         <groupId>org.codehaus.mojo</groupId>         <artifactId>javancss-maven-plugin</artifactId>         <version>2.0-beta-2</version>       </plugin>     </plugins>   </reporting>
相關文章
相關標籤/搜索