Re: scm plugin providers

2007-09-28 Thread robert . egan
"Dan Tran" <[EMAIL PROTECTED]> wrote on 09/28/2007 10:20:43 AM: > On 9/28/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > > Also, when playing with scm:starteam checkout I noticed that it deletes the > > checkout area first. I did not see any code that did this in the Starteam > > so

Re: scm plugin providers

2007-09-28 Thread Dan Tran
On 9/28/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Greetings all > > I have decided to implement my own scm provider, named custom. My connect > url would therefore look like scm:custom:. > > So, my question is, what next? Or more specifically, what are the > classes/interfaces neede

Re: scm plugin providers

2007-09-28 Thread Emmanuel Venisse
it's a dynamic discovery. In your provider, you need a class that extends AbstractScmProvider. This class must have in javadoc this line: * @plexus.component role="org.apache.maven.scm.provider.ScmProvider" role-hint="custom" And you must add this plugin in your pom: org.code

scm plugin providers

2007-09-28 Thread robert . egan
Greetings all I have decided to implement my own scm provider, named custom. My connect url would therefore look like scm:custom:. So, my question is, what next? Or more specifically, what are the classes/interfaces needed to make this happen? Do I "register" with the scm framework in som