RE: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider

2006-03-29 Thread Torbjørn Smørgrav
I tried to build the provider with continuum and reproduced the failure once. After that initital failure - everything works fine. I also reproduced it _once_ while manually running the test suite on Linux and bzr 0.7 (out of 20 times with different configurations of OS, bzr versions and debug

RE: Implementing support for CM Synergy?

2006-03-23 Thread Torbjørn Smørgrav
How can I test my provider? You can extend the ScmTestCase class. I don't use the command test classes in org.apache.maven.scm.tck.command.*, because they requires a test repository model which seems to be under development, because it differs between the command test classes. Yes, the test

RE: [continuum] BUILD FAILURE: Maven SCM Bazaar Provider

2006-03-23 Thread Torbjørn Smørgrav
I'll change the test output to be more spesific about where the error occured, if its the bazaar installation or if its due to unexpected response from bazaar. Torbjørn -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: 24. mars 2006 08:03 To: scm-dev@maven.apache.org

RE: Tests of 1.0

2006-03-06 Thread Torbjørn Smørgrav
Currently, the Bazaar provider tests fail for me under Windows (I have Bazaar installed in Cygwin). What version of bazaar do you use? (Version 0.7 is the current stable, pre 0.7 is failing on *nix like systems) I'd actually like to have the tests not require svn, cvs, bzr installed to pass,

RE: Tests of 1.0

2006-03-06 Thread Torbjørn Smørgrav
- since Bazaar, VSS, etc are partially implemented, according to the site, should they be omitted from this release? Or do they do enough to be useful? Can we list what is implemented and what is not? We should at least define when a provider is implemented and not only partially implemented.

RE: Tests of 1.0

2006-03-06 Thread Torbjørn Smørgrav
It runs fine for me on linux, cygwin and WinXP. Can you give me the junit log? Regards Torbjørn -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: 6. mars 2006 11:39 To: scm-dev@maven.apache.org Subject: Re: Tests of 1.0 Torbjørn Smørgrav wrote: Currently

Testing maven-scm with continuum

2006-03-06 Thread Torbjørn Smørgrav
How do I add a changelog report for non cvs providers? Maven gives me: If using another scm, maven.changelog.factory must be set. See the maven changelog plugin documentation for correct settings. I don't see it in the documentation. Is there other setup eg. reports or client software, I

RE: Testing maven-scm with continuum

2006-03-06 Thread Torbjørn Smørgrav
, provider lib must be in continuum lib directory, add your project and click on build now Emmanuel Torbjørn Smørgrav a écrit : How do I add a changelog report for non cvs providers? Maven gives me: If using another scm, maven.changelog.factory must be set. See the maven changelog plugin

RE: [vote] Release Maven-SCM 1.0 final

2006-02-27 Thread Torbjørn Smørgrav
What about removing all depricated classes and methods before releasing version 1.0? Regards Torbjørn

ScmResult conventions

2006-02-14 Thread Torbjørn Smørgrav
I see that some unit tests are asserting that the provider message in a ScmResult is null if the result is successfull. Is there any reason for that? For me I would like to have the ability to get feedback from the provider even on success. Now if its a reason, is the success field in the

RE: ScmResult conventions

2006-02-14 Thread Torbjørn Smørgrav
. Its not used now but since its a public API we are making we should either make it impossible to construct ScmResults with a message and success or we should simply allow it. I'd prefer you put them back. Emmanuel Torbjørn Smørgrav a écrit : I see that some unit tests are asserting

Jira assignee

2006-02-14 Thread Torbjørn Smørgrav
How do I assign issues to myself? T -Original Message- From: Torbjørn Smørgrav [mailto:[EMAIL PROTECTED] Sent: 14. februar 2006 08:56 To: scm-dev@maven.apache.org Subject: ScmResult conventions I see that some unit tests are asserting that the provider message in a ScmResult is null

RE: Some thoughts after implementing a new provider in maven-scm

2006-01-30 Thread Torbjørn Smørgrav
Venisse [mailto:[EMAIL PROTECTED] Sent: 30. januar 2006 17:35 To: scm-dev@maven.apache.org Subject: Re: Some thoughts after implementing a new provider in maven-scm Torbjørn Smørgrav a écrit : I tried to build your provider before add it in svn but without success. All tests fail on windows. Do you

RE: How to add new SCM

2006-01-16 Thread Torbjørn Smørgrav
To: scm-dev@maven.apache.org Subject: Re: How to add new SCM What is your scm? Put your provider jar in apps/continuum/lib. Emmanuel Torbjørn Smørgrav a écrit : Thanks! Maven is now the happy app with one more scm provider. Now, how do I make continuum pick up the new provider? T

RE: How to add new SCM

2006-01-16 Thread Torbjørn Smørgrav
you want to add your provider in maven-scm tree? Emmanuel Torbjørn Smørgrav a écrit : Bazaar NG http://bazaar.canonical.com/Bzr BTW: Is there any application using the complete SCM API? It looks like checkout is the only really important command to support. Regards Torbjørn -Original

RE: How to add new SCM

2006-01-16 Thread Torbjørn Smørgrav
need to register your provider to plexus, take a look at the already implemeted provider's src/main/resources/META-INF/plexus/components.xml -D On 1/15/06, Torbjørn Smørgrav [EMAIL PROTECTED] wrote: How do you add a SCM to the maven-scm artifact?I have implemented