Add scm:cvs-tag-project goal. It seems scm product specific goals are not to be documented.

Add docs on the property added.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115405 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion 2004-05-26 16:10:52 +00:00
parent 317fceb08b
commit 8f273d889f
3 changed files with 27 additions and 2 deletions

View File

@ -240,6 +240,19 @@
/> />
</goal> </goal>
<!--==================================================================-->
<!-- Tag - CVS -->
<!--==================================================================-->
<goal name="scm:cvs-tag-project">
<ant:cvs command="tag -F ${maven.scm.cvs.tag}"
quiet="${maven.scm.cvs.quiet}"
cvsRsh="${maven.scm.cvs.rsh}"
cvsRoot="${maven.scm.cvs.root}"
failonerror="true"
/>
</goal>
<!--==================================================================--> <!--==================================================================-->
<!-- Prepare Release - CVS --> <!-- Prepare Release - CVS -->
<!--==================================================================--> <!--==================================================================-->

View File

@ -22,7 +22,7 @@
<extend>../plugin-parent/project.xml</extend> <extend>../plugin-parent/project.xml</extend>
<id>maven-scm-plugin</id> <id>maven-scm-plugin</id>
<name>Maven Source Control Management Plug-in</name> <name>Maven Source Control Management Plug-in</name>
<currentVersion>1.3</currentVersion> <currentVersion>1.4-SNAPSHOT</currentVersion>
<description>A plugin for SCM tasks, currently CVS.</description> <description>A plugin for SCM tasks, currently CVS.</description>
<shortDescription>SCM Plugin for Maven. Requires Maven 1.0 RC2.</shortDescription> <shortDescription>SCM Plugin for Maven. Requires Maven 1.0 RC2.</shortDescription>
<url>http://maven.apache.org/reference/plugins/scm/</url> <url>http://maven.apache.org/reference/plugins/scm/</url>

View File

@ -83,7 +83,12 @@
<td>maven.scm.cvs.root</td> <td>maven.scm.cvs.root</td>
<td>Yes</td> <td>Yes</td>
<td> <td>
<p>Default value is taken from CVSROOT in the environment.</p> <p>
Default value is taken from CVSROOT in the environment.
If you have a valid Maven project descriptor and the repository
element is using CVS, you can set this property to
<code>${pom.repository.cvsRoot}</code>
</p>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -133,6 +138,13 @@
<p>Default value is taken from CVS_RSH in the environment.</p> <p>Default value is taken from CVS_RSH in the environment.</p>
</td> </td>
</tr> </tr>
<tr>
<td>maven.scm.cvs.tag/td>
<td>Yes</td>
<td>
<p>Used as the tag for the <code>cvs-tag-project</code> goal.</p>
</td>
</tr>
</table> </table>
</subsection> </subsection>
</section> </section>