RE: Maven with Subversion - Changelog problem.

2005-01-04 Thread Roy, Anthony
I assume you are on windows? This is a problem that will be rectified in the next release of the changelog plugin (this weekend - you can use the source from subversion now). Works like a charm now - thanks -- Anthony Roy.

Maven with Subversion - Changelog problem.

2004-12-30 Thread Roy, Anthony
Hi all, We are trying to get set up with Subversion as our scm, but I am having trouble getting it to write the changelog correctly. I have the following as my repository setup: repository connectionscm|svn|http://host:1234/svn/project/connection

Re: Maven with Subversion - Changelog problem.

2004-12-30 Thread Brett Porter
I assume you are on windows? This is a problem that will be rectified in the next release of the changelog plugin (this weekend - you can use the source from subversion now). For authentication - you either need to setup an anonymous connection and use auth for developerConnection, or

RE: Maven with Subversion - Changelog problem.

2004-12-30 Thread Roy, Anthony
I assume you are on windows? This is a problem that will be rectified in the next release of the changelog plugin (this weekend - you can use the source from subversion now). Great - look forward to it! For authentication - you either need to setup an anonymous connection and use auth

Re: Subversion changelog

2003-11-20 Thread dion
It'd be good to change the regexp code to match both versions. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Mikael Lundgren [EMAIL PROTECTED] wrote on 20/11/2003 03:53:56 AM: Hmmm, it seems that subversion 0.33.0 changed the format of the data

Re: Subversion changelog

2003-11-20 Thread dion
Is Subversion fully supported by the scm now? If you mean the scm plugin, no. If you mean the scm reporting plugins (changelog, activity, developer-activity etc), yes. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/

Re: Subversion changelog

2003-11-20 Thread Mikael Lundgren
[EMAIL PROTECTED] wrote: It'd be good to change the regexp code to match both versions. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Yes, it would I guess. I have tried to create such an expression and even got it to work using the ORO package

RE: Subversion changelog

2003-11-20 Thread Jörg Schaible
Mikael Lundgren wrote on Thursday, November 20, 2003 3:43 PM: [EMAIL PROTECTED] wrote: It'd be good to change the regexp code to match both versions. -- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Yes, it would I guess. I have tried to create

Re: Subversion changelog

2003-11-20 Thread Mikael Lundgren
Jörg Schaible wrote: Now I officially give up :-( This is starting to take way too much time for something that someone with better knowledge about regexp probably can fix in minutes. Should work: ^r(ev)? (\\d+):\\s+ + // revision number Regards, Jörg Thanks! It almost

Re: Subversion changelog

2003-11-20 Thread dion
So this should work: ^r(ev )?(\\d+):\\s+ + // revision number ?-- dIon Gillard, Multitask Consulting Blog: http://blogs.codehaus.org/people/dion/ Mikael Lundgren [EMAIL PROTECTED] wrote on 21/11/2003 02:25:49 AM: Jörg Schaible wrote: Now I officially give up :-( This is

RE: Subversion changelog

2003-11-20 Thread Jörg Schaible
Mikael Lundgren wrote on Thursday, November 20, 2003 4:26 PM: It almost does the trick... However a log line may look like this (only the relevant portion is shown): r15 | kaz | 2002-08-26 14:33:26 -0400 OR like this: rev 15: kaz | 2002-08-26 14:33:26 -0400 Note the spaces

Re: Subversion changelog

2003-11-20 Thread Mikael Lundgren
It's getting more creative ;-) However... looking further at the source yields stuff like this: currentRevision = headerRegexp.getParen(1); currentLogEntry = new ChangeLogEntry(); currentLogEntry.setAuthor(headerRegexp.getParen(2));

Re: Subversion changelog

2003-11-20 Thread Mikael Lundgren
It's getting more creative ;-) However... looking further at the source yields stuff like this: currentRevision = headerRegexp.getParen(1); currentLogEntry = new ChangeLogEntry(); currentLogEntry.setAuthor(headerRegexp.getParen(2));

Re: Subversion changelog

2003-11-20 Thread Emmanuel Venisse
, November 20, 2003 5:00 PM Subject: RE: Subversion changelog Mikael Lundgren wrote on Thursday, November 20, 2003 4:26 PM: It almost does the trick... However a log line may look like this (only the relevant portion is shown): r15 | kaz | 2002-08-26 14:33:26 -0400 OR like this: rev 15: kaz

Re: Subversion changelog

2003-11-19 Thread Mikael Lundgren
Thanks for the replies! My connection string is set to scm:svn:http://127.0.0.1/repos/leanon/leif/trunk I incorrectly copied the wrong line from my project.xml file, but I don't think this matters much. When i run svn log -v from the directory I get the expected log output which is

Re: Subversion changelog

2003-11-19 Thread Heiko Kundlacz
[EMAIL PROTECTED] wrote: Heiko Kundlacz [EMAIL PROTECTED] wrote on 19/11/2003 07:12:28 AM: As I know Subversion isn't support. If you want to use subversion you should write your own plugin based on: urlhttp://jsvn.alternatecomputing.com//url They provide an ant task you can implement. I

Re: Subversion changelog

2003-11-19 Thread Mikael Lundgren
Hmmm, it seems that subversion 0.33.0 changed the format of the data created by running svn log... from http://svn.collab.net/repos/svn/trunk/CHANGES the following line: * 'svn log' output headers now say r | instead of rev : Could this be the problem? I checked the sources for the

Re: Subversion changelog

2003-11-19 Thread Mikael Lundgren
Well, that was it... after some experimenting I now get a working changelog in maven! One line of code had to change... Here is the original code in org/apache/maven/svnlib/Attic/SvnChangeLogParser.java: /** The pattern used to match svn header lines */ private static final String

Re: Subversion changelog

2003-11-19 Thread Emmanuel Venisse
Could put a patch in Jira? We apply it asap. Thanks Emmanuel - Original Message - From: Mikael Lundgren [EMAIL PROTECTED] To: Maven Users List [EMAIL PROTECTED] Sent: Wednesday, November 19, 2003 7:39 PM Subject: Re: Subversion changelog Well, that was it... after some

Re: Subversion changelog

2003-11-18 Thread Heiko Kundlacz
As I know Subversion isn't support. If you want to use subversion you should write your own plugin based on: urlhttp://jsvn.alternatecomputing.com//url They provide an ant task you can implement. I tried out the checkout command and it works. Heiko Mikael Lundgren wrote: Hi, I'm trying to

Re: Subversion changelog

2003-11-18 Thread dion
Heiko Kundlacz [EMAIL PROTECTED] wrote on 19/11/2003 07:12:28 AM: As I know Subversion isn't support. If you want to use subversion you should write your own plugin based on: urlhttp://jsvn.alternatecomputing.com//url They provide an ant task you can implement. I tried out the checkout