Correct variable override mechanism

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@355221 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2005-12-08 21:30:19 +00:00
parent 6af8e5a260
commit fdf426b6dc

View File

@ -74,26 +74,26 @@
<j:choose> <j:choose>
<j:when test="${runreactor == 'true'}"> <j:when test="${runreactor == 'true'}">
<m:reactor <m:reactor
basedir="${mBasedir}" basedir="${dBasedir}"
banner="Generating dashboard data for" banner="Generating dashboard data for"
includes="${mIncludes}" includes="${dIncludes}"
excludes="${mExcludes}" excludes="${dExcludes}"
postProcessing="true" postProcessing="true"
goals="dashboard:report-single" goals="dashboard:report-single"
ignoreFailures="${mIgnoreFailures}"/> ignoreFailures="${dIgnoreFailures}"/>
</j:when> </j:when>
<j:otherwise> <j:otherwise>
<!-- We need to run the reactor to gather the list of projects <!-- We need to run the reactor to gather the list of projects
because the reactor creates a reactorProjects jelly property because the reactor creates a reactorProjects jelly property
that we need in the dashboard:aggregate goal. --> that we need in the dashboard:aggregate goal. -->
<m:reactor <m:reactor
basedir="${mBasedir}" basedir="${dBasedir}"
banner="Gathering project list for" banner="Gathering project list for"
includes="${mIncludes}" includes="${dIncludes}"
excludes="${mExcludes}" excludes="${dExcludes}"
postProcessing="true" postProcessing="true"
collectOnly="true" collectOnly="true"
ignoreFailures="${mIgnoreFailures}"/> ignoreFailures="${dIgnoreFailures}"/>
</j:otherwise> </j:otherwise>
</j:choose> </j:choose>