Sure, I'll do it later today. However, after looking at the scm plugin, I'm more convinced we need a cvs plugin separately, and use the scm plugin to bring it all together, rather than all the goals being in the one plugin.
On Thu, 27 May 2004 08:52:51 +1000, Brett Porter <[EMAIL PROTECTED]> wrote: > > changes.xml? > > > > -----Original Message----- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > Sent: Thursday, 27 May 2004 2:11 AM > > To: [EMAIL PROTECTED] > > Subject: cvs commit: maven-plugins/scm plugin.jelly project.xml > > > > > > dion 2004/05/26 09:10:52 > > > > Modified: scm/xdocs properties.xml > > scm plugin.jelly project.xml > > Log: > > Add scm:cvs-tag-project goal. It seems scm product specific > > goals are not to be documented. > > Add docs on the property added. > > > > Revision Changes Path > > 1.3 +13 -1 maven-plugins/scm/xdocs/properties.xml > > > > Index: properties.xml > > =================================================================== > > RCS file: /home/cvs/maven-plugins/scm/xdocs/properties.xml,v > > retrieving revision 1.2 > > retrieving revision 1.3 > > diff -u -r1.2 -r1.3 > > --- properties.xml 4 Mar 2004 18:38:45 -0000 1.2 > > +++ properties.xml 26 May 2004 16:10:52 -0000 1.3 > > @@ -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> > > @@ -131,6 +136,13 @@ > > <td>Yes</td> > > <td> > > <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> > > > > > > > > 1.11 +13 -0 maven-plugins/scm/plugin.jelly > > > > Index: plugin.jelly > > =================================================================== > > RCS file: /home/cvs/maven-plugins/scm/plugin.jelly,v > > retrieving revision 1.10 > > retrieving revision 1.11 > > diff -u -r1.10 -r1.11 > > --- plugin.jelly 2 Apr 2004 03:45:57 -0000 1.10 > > +++ plugin.jelly 26 May 2004 16:10:52 -0000 1.11 > > @@ -239,6 +239,19 @@ > > failonerror="true" > > /> > > </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 > > --> > > > > > > > > 1.17 +1 -1 maven-plugins/scm/project.xml > > > > Index: project.xml > > =================================================================== > > RCS file: /home/cvs/maven-plugins/scm/project.xml,v > > retrieving revision 1.16 > > retrieving revision 1.17 > > diff -u -r1.16 -r1.17 > > --- project.xml 16 May 2004 02:56:52 -0000 1.16 > > +++ project.xml 26 May 2004 16:10:52 -0000 1.17 > > @@ -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> > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
