How to generate Cobertura Code Coverage Report using Maven from Hudson

后端 未结 4 1943
故里飘歌
故里飘歌 2020-12-29 04:56

In my project I need to create Cobertura Code Coverage report from Hudson using maven build.
In Hudson I have added the Cobertura Code Coverage plugin.
I need the co

4条回答
  •  悲&欢浪女
    2020-12-29 05:38

    Did you try to add this to your pom.xml in the reporting section?

    
        org.codehaus.mojo
        cobertura-maven-plugin
        
           
               html
               xml
           
        
    
    

    Complete configuration steps can be found here.

提交回复
热议问题