PR: MPJDIFF-9

Jdiff fails with svn modules. New property maven.jdiff.svn.module.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@517210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2007-03-12 13:31:28 +00:00
parent f0a75543e0
commit 1a3e114f5e
4 changed files with 13 additions and 2 deletions

View File

@ -104,7 +104,7 @@
password="${maven.scm.password}" password="${maven.scm.password}"
/> />
<ant:property name="maven.jdiff.new.src" <ant:property name="maven.jdiff.new.src"
value="${maven.jdiff.new.dir}/${relativeSrcDir}"/> value="${maven.jdiff.new.dir}/${maven.jdiff.svn.module}/${relativeSrcDir}"/>
</j:otherwise> </j:otherwise>
</j:choose> </j:choose>
@ -128,7 +128,7 @@
password="${maven.scm.password}" password="${maven.scm.password}"
/> />
<ant:property name="maven.jdiff.old.src" <ant:property name="maven.jdiff.old.src"
value="${maven.jdiff.old.dir}/${relativeSrcDir}"/> value="${maven.jdiff.old.dir}/${maven.jdiff.svn.module}/${relativeSrcDir}"/>
</j:otherwise> </j:otherwise>
</j:choose> </j:choose>

View File

@ -22,3 +22,5 @@
# ------------------------------------------------------------------- # -------------------------------------------------------------------
maven.jdiff.old.tag=CURRENT maven.jdiff.old.tag=CURRENT
maven.jdiff.new.tag=HEAD maven.jdiff.new.tag=HEAD
maven.jdiff.svn.module=

View File

@ -25,6 +25,7 @@
</properties> </properties>
<body> <body>
<release version="1.5.1-SNAPSHOT" date="In SVN"> <release version="1.5.1-SNAPSHOT" date="In SVN">
<action dev="ltheussl" type="fix" issue="MPJDIFF-9">Jdiff fails with svn modules. New property <code>maven.jdiff.svn.module</code>.</action>
<action dev="ltheussl" type="fix" issue="MPJDIFF-10">Jdiff doclet fails with jdk 1.4.</action> <action dev="ltheussl" type="fix" issue="MPJDIFF-10">Jdiff doclet fails with jdk 1.4.</action>
<action dev="aheritier" type="fix">Use relative links to the javadoc.</action> <action dev="aheritier" type="fix">Use relative links to the javadoc.</action>
<action dev="aheritier" type="update">It requires at least maven-plugin-plugin v1.7.</action> <action dev="aheritier" type="update">It requires at least maven-plugin-plugin v1.7.</action>

View File

@ -57,6 +57,14 @@
scm plugin properties</a>. scm plugin properties</a>.
</td> </td>
</tr> </tr>
<tr>
<td>maven.jdiff.svn.module</td>
<td>Yes</td>
<td>
If you are using Subversion with modules, indicate the module
of your project here.
</td>
</tr>
</table> </table>
</section> </section>
</body> </body>