> -----Original Message-----
> From: STRAYER, JON (SBCSI) [mailto:[EMAIL PROTECTED]
> Sent: samedi 26 juin 2004 01:14
> To: 'Maven Users List'
> Subject: RE: Dashboard
>
[snip]
> > If that's what you're doing and the report is empty, can you
> > check the files mentioned above and see what they contain
> > (dashboard-single.xml, dashboard-data.xml)?
>
> After the multiproject run finished the dashboard-data.xml file just had
> <?xml version="1.0" encoding="UTF-8"?>
>
> <dashboard>
> </dashboard>
>
> So, I ran "maven dashboard" and it was still empty. If you tink of
> anything
> please let me know. I'm going to dig around in the dashbpoard jelly and
> see
> if I can figure out what's going wrong.
I'd say the problems has to be with the includes/excludes. Here's the code
snippet from the plugin:
<j:file name="${maven.dashboard.report.xml}" prettyPrint="true"
xmlns="dashboard">
<dashboard>
<j:forEach var="reactorProject" items="${reactorProjects}">
[...]
<x:element name="project">
<x:attribute name="name">${reactorProject.name}</x:attribute>
[...]
As you can see the only reason there are no <project> items in
dashboard-data.xml is if there are no reactor project found.
The reactorProjects variable is generated with:
<m:reactor
basedir="${maven.dashboard.basedir}"
banner="Gathering project list for"
includes="${maven.dashboard.includes}"
excludes="${maven.dashboard.excludes}"
postProcessing="true"
collectOnly="true"
ignoreFailures="${maven.dashboard.ignoreFailures}"/>
Thus, I think one of maven.dashboard.basedir, maven.dashboard.includes or
maven.dashboard.excludes must be set with a wrong value. Maybe
maven.dashboard.basedir, as you're not setting it and its default value is:
maven.dashboard.basedir=${basedir}
However, in your previous email you mentioned you had set
maven.multiproject.basedir=${basedir}/../
Thus you should probably set:
maven.dashboard.basedir=${basedir}/../
Let me know if it helps
-Vincent
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---
> Incoming mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.710 / Virus Database: 466 - Release Date: 23/06/2004
>
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.710 / Virus Database: 466 - Release Date: 23/06/2004
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]