Hi, after upgrading to maven 1.1b1, I don't get any failed builds anymore. I use the 'maven.multiproject.ignoreFailures=true' property in my multiproject so all projects gets build, even if one of them fails. But with maven 1.0.2, I could still get a list of all failed project with this piece of code:
<j:forEach var="failedProject" items="${pom.getPluginContext ('maven-multiproject-plugin').getVariable('failedProjects')}"> <ant:echo file="${maven.build.dir}/mail.html" append="true" message="Project: ${failedProject.name}<br/>"/> <ant:echo>${failedProject.artifactId}</ant:echo> </j:forEach> Why does this not work anymore? regards, Wim