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>
<!--==================================================================-->
<!-- 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 -->
<!--==================================================================-->

View File

@ -22,7 +22,7 @@
<extend>../plugin-parent/project.xml</extend>
<id>maven-scm-plugin</id>
<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>
<shortDescription>SCM Plugin for Maven. Requires Maven 1.0 RC2.</shortDescription>
<url>http://maven.apache.org/reference/plugins/scm/</url>

View File

@ -83,7 +83,12 @@
<td>maven.scm.cvs.root</td>
<td>Yes</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>
</tr>
<tr>
@ -133,6 +138,13 @@
<p>Default value is taken from CVS_RSH in the environment.</p>
</td>
</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>
</subsection>
</section>