You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by Dennis Lundberg <de...@apache.org> on 2006/12/05 23:45:51 UTC

Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Did you mean for the version of Maven SCM to be 1.0-SNAPSHOT?

Shouldn't that be 1.0-beta-4-SNAPSHOT judging by the messages on the 
scm-dev list?

-- 
Dennis Lundberg

evenisse@apache.org wrote:
> Author: evenisse
> Date: Tue Dec  5 06:37:46 2006
> New Revision: 482676
> 
> URL: http://svn.apache.org/viewvc?view=rev&rev=482676
> Log:
> o Use maven-scm snapshot
> o Add support for CM Synergy
> 
> Modified:
>     maven/plugins/trunk/maven-changelog-plugin/pom.xml
>     maven/plugins/trunk/maven-changelog-plugin/src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java
> 
> Modified: maven/plugins/trunk/maven-changelog-plugin/pom.xml
> URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changelog-plugin/pom.xml?view=diff&rev=482676&r1=482675&r2=482676
> ==============================================================================
> --- maven/plugins/trunk/maven-changelog-plugin/pom.xml (original)
> +++ maven/plugins/trunk/maven-changelog-plugin/pom.xml Tue Dec  5 06:37:46 2006
> @@ -182,53 +182,58 @@
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-api</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-manager-plexus</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-bazaar</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-clearcase</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <!-- Replace this cvs provider by a pure java cvs provider when it will be available -->
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-cvsexe</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-local</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-perforce</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-starteam</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-svnexe</artifactId>
> -      <version>1.0-beta-3</version>
> +            <version>${maven-scm.version}</version>
> +    </dependency>
> +    <dependency>
> +      <groupId>org.apache.maven.scm</groupId>
> +      <artifactId>maven-scm-provider-synergy</artifactId>
> +            <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven.scm</groupId>
>        <artifactId>maven-scm-provider-vss</artifactId>
> -      <version>1.0-beta-3</version>
> +      <version>${maven-scm.version}</version>
>      </dependency>
>      <dependency>
>        <groupId>org.apache.maven</groupId>
> @@ -237,4 +242,7 @@
>        <scope>test</scope>
>      </dependency>
>    </dependencies>
> +  <properties>
> +    <maven-scm.version>1.0-SNAPSHOT</maven-scm.version>
> +  </properties>
>  </project>
> 
> Modified: maven/plugins/trunk/maven-changelog-plugin/src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java
> URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changelog-plugin/src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java?view=diff&rev=482676&r1=482675&r2=482676
> ==============================================================================
> --- maven/plugins/trunk/maven-changelog-plugin/src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java (original)
> +++ maven/plugins/trunk/maven-changelog-plugin/src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java Tue Dec  5 06:37:46 2006
> @@ -24,6 +24,7 @@
>  import org.apache.maven.scm.command.checkout.CheckOutScmResult;
>  import org.apache.maven.scm.command.diff.DiffScmResult;
>  import org.apache.maven.scm.command.edit.EditScmResult;
> +import org.apache.maven.scm.command.list.ListScmResult;
>  import org.apache.maven.scm.command.remove.RemoveScmResult;
>  import org.apache.maven.scm.command.status.StatusScmResult;
>  import org.apache.maven.scm.command.tag.TagScmResult;
> @@ -52,6 +53,12 @@
>          return null;
>      }
>  
> +    public AddScmResult add( ScmRepository scmRepository, ScmFileSet scmFileSet, String message )
> +        throws ScmException
> +    {
> +        return null;
> +    }
> +
>      public void addListener( ScmLogger scmLogger )
>      {
>      }
> @@ -192,5 +199,21 @@
>      public List validateScmUrl( String string, char c )
>      {
>          return null;
> +    }
> +
> +    public ListScmResult list( ScmRepository repository, ScmFileSet fileSet, boolean recursive, String tag )
> +        throws ScmException
> +    {
> +        return null;
> +    }
> +
> +    public String sanitizeTagName( String tag )
> +    {
> +        return tag;
> +    }
> +
> +    public boolean validateTagName( String tag )
> +    {
> +        return true;
>      }
>  }
> 
> 



-- 
Dennis Lundberg

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Posted by Andrew Williams <an...@handyande.co.uk>.
fair point - if you are imminently making the release I suppose it makes 
sense ;)

Andy

Brett Porter wrote:
> Yes, it's just a pain to change it only to change it back again when a 
> release is imminent.
>
> - Brett
>
> On 06/12/2006, at 8:59 PM, Andrew Williams wrote:
>
>> Not really - I'm with Dan here, if we are working to a beta-4 release 
>> surely it should be 1.0-beta-4-SNAPSHOT.
>> That way there is no confusion as to what version to release. Then 
>> when 1.0 is ready it can be dropped up to the 1.0 level.
>>
>> Is this not the behavior documented in BBwM?
>>
>> Andy
>>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Posted by Brett Porter <br...@apache.org>.
Yes, it's just a pain to change it only to change it back again when  
a release is imminent.

- Brett

On 06/12/2006, at 8:59 PM, Andrew Williams wrote:

> Not really - I'm with Dan here, if we are working to a beta-4  
> release surely it should be 1.0-beta-4-SNAPSHOT.
> That way there is no confusion as to what version to release. Then  
> when 1.0 is ready it can be dropped up to the 1.0 level.
>
> Is this not the behavior documented in BBwM?
>
> Andy
>
> Emmanuel Venisse wrote:
>> the release will be beta-4, but the version is maven-scm poms is  
>> actually 1.0-SNAPSHOT and I won't change them before the release.  
>> When I'll release, I'll set the version to beta-4 and not 1.0.
>> The next version will be 1.0-SNAPSHOT. Hope it's clear now :)
>>
>> Emmanuel
>>
>> Dan Tran a écrit :
>>> i am confused here.   beta-4 or 1.0?
>>>
>>> -D
>>>
>>>
>>> On 12/5/06, Emmanuel Venisse <em...@venisse.net> wrote:
>>>>
>>>> yes, it will be 1.0-beta-4, but actually, it's 1.0-SNAPSHOT.
>>>>
>>>> Emmanuel
>>>>
>>>> Dennis Lundberg a écrit :
>>>> > Did you mean for the version of Maven SCM to be 1.0-SNAPSHOT?
>>>> >
>>>> > Shouldn't that be 1.0-beta-4-SNAPSHOT judging by the messages  
>>>> on the
>>>> > scm-dev list?
>>>> >
>>>>
>>>>
>>>> ------------------------------------------------------------------- 
>>>> --
>>>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>>>> For additional commands, e-mail: dev-help@maven.apache.org
>>>>
>>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Posted by Andrew Williams <an...@handyande.co.uk>.
Not really - I'm with Dan here, if we are working to a beta-4 release 
surely it should be 1.0-beta-4-SNAPSHOT.
That way there is no confusion as to what version to release. Then when 
1.0 is ready it can be dropped up to the 1.0 level.

Is this not the behavior documented in BBwM?

Andy

Emmanuel Venisse wrote:
> the release will be beta-4, but the version is maven-scm poms is 
> actually 1.0-SNAPSHOT and I won't change them before the release. When 
> I'll release, I'll set the version to beta-4 and not 1.0.
> The next version will be 1.0-SNAPSHOT. Hope it's clear now :)
>
> Emmanuel
>
> Dan Tran a écrit :
>> i am confused here.   beta-4 or 1.0?
>>
>> -D
>>
>>
>> On 12/5/06, Emmanuel Venisse <em...@venisse.net> wrote:
>>>
>>> yes, it will be 1.0-beta-4, but actually, it's 1.0-SNAPSHOT.
>>>
>>> Emmanuel
>>>
>>> Dennis Lundberg a écrit :
>>> > Did you mean for the version of Maven SCM to be 1.0-SNAPSHOT?
>>> >
>>> > Shouldn't that be 1.0-beta-4-SNAPSHOT judging by the messages on the
>>> > scm-dev list?
>>> >
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: dev-help@maven.apache.org
>>>
>>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Posted by Dennis Lundberg <de...@apache.org>.
Thanks for clearing that up.

-- 
Dennis Lundberg

Emmanuel Venisse wrote:
> the release will be beta-4, but the version is maven-scm poms is 
> actually 1.0-SNAPSHOT and I won't change them before the release. When 
> I'll release, I'll set the version to beta-4 and not 1.0.
> The next version will be 1.0-SNAPSHOT. Hope it's clear now :)
> 
> Emmanuel
> 
> Dan Tran a écrit :
>> i am confused here.   beta-4 or 1.0?
>>
>> -D
>>
>>
>> On 12/5/06, Emmanuel Venisse <em...@venisse.net> wrote:
>>>
>>> yes, it will be 1.0-beta-4, but actually, it's 1.0-SNAPSHOT.
>>>
>>> Emmanuel
>>>
>>> Dennis Lundberg a écrit :
>>> > Did you mean for the version of Maven SCM to be 1.0-SNAPSHOT?
>>> >
>>> > Shouldn't that be 1.0-beta-4-SNAPSHOT judging by the messages on the
>>> > scm-dev list?
>>> >
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: dev-help@maven.apache.org
>>>
>>>
>>
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Posted by Emmanuel Venisse <em...@venisse.net>.
the release will be beta-4, but the version is maven-scm poms is actually 1.0-SNAPSHOT and I won't change them before the release. When I'll release, I'll set the version to beta-4 and not 1.0.
The next version will be 1.0-SNAPSHOT. Hope it's clear now :)

Emmanuel

Dan Tran a écrit :
> i am confused here.   beta-4 or 1.0?
> 
> -D
> 
> 
> On 12/5/06, Emmanuel Venisse <em...@venisse.net> wrote:
>>
>> yes, it will be 1.0-beta-4, but actually, it's 1.0-SNAPSHOT.
>>
>> Emmanuel
>>
>> Dennis Lundberg a écrit :
>> > Did you mean for the version of Maven SCM to be 1.0-SNAPSHOT?
>> >
>> > Shouldn't that be 1.0-beta-4-SNAPSHOT judging by the messages on the
>> > scm-dev list?
>> >
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
>> For additional commands, e-mail: dev-help@maven.apache.org
>>
>>
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Posted by Dan Tran <da...@gmail.com>.
i am confused here.   beta-4 or 1.0?

-D


On 12/5/06, Emmanuel Venisse <em...@venisse.net> wrote:
>
> yes, it will be 1.0-beta-4, but actually, it's 1.0-SNAPSHOT.
>
> Emmanuel
>
> Dennis Lundberg a écrit :
> > Did you mean for the version of Maven SCM to be 1.0-SNAPSHOT?
> >
> > Shouldn't that be 1.0-beta-4-SNAPSHOT judging by the messages on the
> > scm-dev list?
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>
>

Re: svn commit: r482676 - in /maven/plugins/trunk/maven-changelog-plugin: pom.xml src/test/java/org/apache/maven/plugin/changelog/stubs/ScmProviderStub.java

Posted by Emmanuel Venisse <em...@venisse.net>.
yes, it will be 1.0-beta-4, but actually, it's 1.0-SNAPSHOT.

Emmanuel

Dennis Lundberg a écrit :
> Did you mean for the version of Maven SCM to be 1.0-SNAPSHOT?
> 
> Shouldn't that be 1.0-beta-4-SNAPSHOT judging by the messages on the 
> scm-dev list?
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org