Add a link on each error to explain it.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@374776 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
aheritier 2006-02-03 23:01:55 +00:00
parent bb9a3d67a3
commit 754ee15ce8
2 changed files with 3 additions and 1 deletions

View File

@ -195,8 +195,9 @@
<j:forEach var="error" items="${errors}"> <j:forEach var="error" items="${errors}">
<tr> <tr>
<td> <td>
<j:set var="externalInfoUrl" value="${error.attribute('externalInfoUrl').getValue()}"/>
<j:set var="errorMessage" value="${error.StringValue}"/> <j:set var="errorMessage" value="${error.StringValue}"/>
${htmlescape.getText(errorMessage)} ${htmlescape.getText(errorMessage)} - <a href="${externalInfoUrl}" target="_blank">detail...</a>
</td> </td>
<td> <td>
<j:set var="line" value="${error.attribute('line').getValue()}"/> <j:set var="line" value="${error.attribute('line').getValue()}"/>

View File

@ -25,6 +25,7 @@
</properties> </properties>
<body> <body>
<release version="1.8-SNAPSHOT" date="In SVN"> <release version="1.8-SNAPSHOT" date="In SVN">
<action dev="aheritier" type="add">Add a link on each error to explain it.</action>
<action dev="aheritier" type="add" issue="MPPMD-21">New properties "maven.pmd.failonerror" and "maven.pmd.failonruleviolation" to fail the build if any errors or problems are found.</action> <action dev="aheritier" type="add" issue="MPPMD-21">New properties "maven.pmd.failonerror" and "maven.pmd.failonruleviolation" to fail the build if any errors or problems are found.</action>
<action dev="aheritier" type="add" issue="MPPMD-13">New property "maven.pmd.console" to display pmd errors to the console.</action> <action dev="aheritier" type="add" issue="MPPMD-13">New property "maven.pmd.console" to display pmd errors to the console.</action>
<action dev="aheritier" type="fix">Do not generate links to JXR files if they are not created.</action> <action dev="aheritier" type="fix">Do not generate links to JXR files if they are not created.</action>