PR: MPDASHBOARD-30

Add message on status of finding dashboard-single.xml.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@373747 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-01-31 07:16:42 +00:00
parent 91498eb7e3
commit cfb032cf18
2 changed files with 9 additions and 1 deletions

View File

@ -123,6 +123,7 @@
xmlns="dashboard">
<dashboard>
<j:forEach var="reactorProject" items="${reactorProjects}">
<j:set var="dashboard.single.report.available" value="false"/>
<u:available
file="${reactorProject.context.getVariable('maven.build.dir')}/dashboard-single.xml">
<!-- FIXME: this should be maven.dashboard.report.single -->
@ -142,7 +143,13 @@
<x:parse var="doc" xml="${dashboardAsFile}"/>
<x:copyOf select="$doc//aggregator"/>
</x:element>
<j:set var="dashboard.single.report.available" value="true"/>
</u:available>
<j:if test="${dashboard.single.report.available == 'false'}">
<echo>
*** WARNING: no file dashboard-single.xml found for reactor project: ${reactorProject}
</echo>
</j:if>
</j:forEach>
</dashboard>
</j:file>

View File

@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.9-SNAPSHOT" date="in svn">
<action dev="ltheussl" type="add" issue="MPDASHBOARD-30" due-to="Jeff Jensen">Add message on status of finding dashboard-single.xml.</action>
<action dev="ltheussl" type="fix" issue="MPDASHBOARD-35" due-to="Christoph Jerolimov">Fix count of changelog-entries with maven-changelog-plugin-1.9.</action>
<action dev="ltheussl" type="add">Add new aggregators <code>jiraopen</code> and <code>jirascheduled</code>.</action>
<action dev="ltheussl" type="fix" issue="MPDASHBOARD-24" due-to="Wim Deblauwe">Incorrect links with multiproject independent navigation.</action>