PR: MPJXR-32
New property to make inclusion of test Xref optional. git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@366372 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
485dc6f33c
commit
6208d73019
@ -44,7 +44,7 @@
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
description="A set of browsable cross-referenced sources."/>
|
description="A set of browsable cross-referenced sources."/>
|
||||||
</j:if>
|
</j:if>
|
||||||
<j:if test="${unitTestSourcesPresent}">
|
<j:if test="${unitTestSourcesPresent and maven.jxr.include.testXref == 'true'}">
|
||||||
<doc:registerReport
|
<doc:registerReport
|
||||||
name="Test Xref"
|
name="Test Xref"
|
||||||
pluginName="maven-jxr-plugin"
|
pluginName="maven-jxr-plugin"
|
||||||
@ -105,7 +105,7 @@
|
|||||||
bottom="${copyright}">
|
bottom="${copyright}">
|
||||||
</jxr:jxr>
|
</jxr:jxr>
|
||||||
|
|
||||||
<j:if test="${unitTestSourcesPresent == 'true'}">
|
<j:if test="${unitTestSourcesPresent == 'true' and maven.jxr.include.testXref == 'true'}">
|
||||||
<ant:mkdir dir="${maven.jxr.destdir.test}"/>
|
<ant:mkdir dir="${maven.jxr.destdir.test}"/>
|
||||||
|
|
||||||
<ant:copy file="${maven.jxr.stylesheet}"
|
<ant:copy file="${maven.jxr.stylesheet}"
|
||||||
|
|||||||
@ -25,3 +25,5 @@ maven.jxr.destdir.test = ${maven.docs.dest}/xref-test
|
|||||||
|
|
||||||
maven.jxr.stylesheet = ${plugin.resources}/stylesheet.css
|
maven.jxr.stylesheet = ${plugin.resources}/stylesheet.css
|
||||||
maven.jxr.templateDir = templates
|
maven.jxr.templateDir = templates
|
||||||
|
|
||||||
|
maven.jxr.include.testXref=true
|
||||||
|
|||||||
@ -25,6 +25,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.5-SNAPSHOT" date="In SVN">
|
<release version="1.5-SNAPSHOT" date="In SVN">
|
||||||
|
<action dev="ltheussl" type="add" issue="MPJXR-32">New property to make inclusion of test Xref optional.</action>
|
||||||
<action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
|
<action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
|
||||||
<ul>
|
<ul>
|
||||||
<li>commons-collections v3.1 -> v3.0</li>
|
<li>commons-collections v3.1 -> v3.0</li>
|
||||||
|
|||||||
@ -31,6 +31,13 @@
|
|||||||
<th>Optional?</th>
|
<th>Optional?</th>
|
||||||
<th>Description</th>
|
<th>Description</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>maven.jxr.include.testXref</td>
|
||||||
|
<td>Yes</td>
|
||||||
|
<td>
|
||||||
|
<p>Default value is <code>true</code>.</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>maven.jxr.templateDir</td>
|
<td>maven.jxr.templateDir</td>
|
||||||
<td>Yes</td>
|
<td>Yes</td>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user