Map developer ids to emails

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114311 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion
2003-11-11 03:04:48 +00:00
parent dea748732c
commit c84ad6948a

View File

@@ -36,6 +36,12 @@
css="${maven.cruisecontrol.home}/reporting/jsp/css/cruisecontrol.css"
xsldir="${maven.cruisecontrol.home}/reporting/jsp/xsl">
<!-- need to map ids to emails here -->
<j:set var="developers" value="${pom.developers}"/>
<j:if test="${!empty(developers)}">
<j:forEach var="developer" items="${pom.developers}">
<map alias="${developer.id}" address="${developer.email}"/>
</j:forEach>
</j:if>
<failure address="${pom.build.nagEmailAddress}" />
</htmlemail>
</publishers>