Add this in release plugin pom.xml :

    <dependency>
      <groupId>org.apache.maven.scm</groupId>
      <artifactId>maven-scm-provider-clearcase</artifactId>
      <version>1.0-beta-2-SNAPSHOT</version>
    </dependency>

Other solution (if you don't want to modify release plugin pom now) is to add it in release plugin configuration in your project

<build>
  ...
  <plugins>
    <plugin>
      <artifactId>maven-release-plugin</artifactId>
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.scm</groupId>
          <artifactId>maven-scm-provider-svn</artifactId>
          <version>1.0-alpha-4</version>
        </dependency>
      </dependencies>
    </plugin>
  </plugins>
  ...
</build>
Emmanuel

Wim Deblauwe a écrit :
Do you have a small example on how to do that? I was looking at http://maven.apache.org/plugins/maven-release-plugin/ but I can't seem to find info on adding a new provider there.

regards,

Wim

2005/11/17, Brett Porter <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>:

    You can also add it within the plugin tag in your pom

    Emmanuel Venisse wrote:
     > you need to update the release plugin pom and rebuild it.
     >
     > you need for release plugin tag, checkin, checkout, update remove
    and
     > status commands.
     >
     > Emmanuel
     >



Reply via email to