where do i add the reporting tag so that i get the maven test reports generated in surefire reports
linda russel
Ranch Hand
Joined: Jan 05, 2012
Posts: 86
posted
0
THE thing is reports are not getting generated in surefire reports folder even after the test has completed running. I think i need to add reporting tag somewhere . i tried to add after build tag but it showed a error. how can i correct this pom.xml?
linda russel
Ranch Hand
Joined: Jan 05, 2012
Posts: 86
posted
0
with the following command in command line i got the test running and got the test report generated in site folder but could not send email. how do i change my pom.xml in such a way that it executes the test first and then sends the report in a single command ?
I always generate a site for my projects and specific which reports are to be included in the site (it includes the surefire reports):
Finally, builds are done in Jenkins and I either set up Jenkins to send an email after the build, or I let people register with the RSS feeds in Jenkins.
Builds are done using the command:
I think that that should also work for you (you can also use "package" or "install" instead of "deploy")
Thanks for the reply. but i still do not understand why i get a error when i put a reporting tag under the build tag. At what level should i put the Reporting tag in case of my POM.xml?