> I am using maven-surefire-plugin in my pom.xml. When I am trying to
> generate test
> reports in the form of html, it is generating in Plain Text and Xml format.
> Could you please
> let me know, what I need to do for generating html reports?
In your pom, you should add the surfire plugin in the reporting section :
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
--
Thomas Recloux
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]