I am trying to integrate webtests results in my Hudson builds. My maven project is a multi-module one. Two of the modules run webtests, and generate the corresponding webtest reports in junit format, with the filename WebTestOverview.junit.xml.
The filesystem structure of my multi-module maven project: - myproject - module1 - module2 - module3 (has webtest testing) - module4 (has webtest testing) I have configured the Webtest presenter plugin for Hudson like this, for the build of myproject: - publish webtest: on - Webtest results location: module3/target/site/webtest (the folder which contains the webtest results and the WebTestOverview.junit.xml report). as documented in: http://wiki.hudson-ci.org/display/HUDSON/WebTest+Presenter+Plugin I also tried for the results location: target/site/webtest I cannot see the webtests results on the Hudson builds. What am I missing? Josep

