为你的maven项目加上测试覆盖率报告。

阅读更多
这里使用 maven clover plugin, 在你的pom.xml中加上以下的代码。

     

        com.atlassian.maven.plugins
        maven-clover2-plugin

        
			
          1%

          
          1.6

          
          

            **/*Dummy*.java
          

             ${clover.licenseLocation}
        
        
          
            main

            verify
            
              instrument
              check
            
          
          

            site
            pre-site
            
              instrument
            
          
        

      


  
    true
    
      
        com.atlassian.maven.plugins

        maven-clover2-plugin
        

          
          

          
          true
          true

          true

          
          true
             ${clover.licenseLocation}
	  
        
      

    
  

 
然后运行 mvn install 和 mvn site 就行了。 当然其中会有一些这个maven插件的配置。 具体请看http://docs.atlassian.com/maven-clover2-plugin/2.3.1/usage.html

你可能感兴趣的:(maven,XML,JDK,HTML)