mirror of https://github.com/apache/archiva.git
Fix report generation
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@523979 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c4229b98c2
commit
51eaa36758
|
@ -38,10 +38,24 @@
|
|||
|
||||
<c:forEach items="${reports}" var="report">
|
||||
<h3>
|
||||
${report.groupId} : ${report.artifactId} : ${report.version} : ${report.classifier} : ${report.type}
|
||||
${report.groupId} : ${report.artifactId} : ${report.version} : ${report.classifier} : ${report.artifactType}
|
||||
</h3>
|
||||
<ul>
|
||||
<c:forEach items="${report.results}" var="result">
|
||||
<c:forEach items="${report.failures}" var="result">
|
||||
<li>
|
||||
<b>${result.reason}</b>
|
||||
</li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
<ul>
|
||||
<c:forEach items="${report.warnings}" var="result">
|
||||
<li>
|
||||
<b>${result.reason}</b>
|
||||
</li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
<ul>
|
||||
<c:forEach items="${report.notices}" var="result">
|
||||
<li>
|
||||
<b>${result.reason}</b>
|
||||
</li>
|
||||
|
|
Loading…
Reference in New Issue