Re: How can one handle release candidates in Maven?

2009-05-18 Thread sebb
On 15/05/2009, sebb seb...@gmail.com wrote: On 14/05/2009, Brian Fox bri...@infinity.nu wrote: On Thu, May 14, 2009 at 3:19 PM, Sahoo sa...@sun.com wrote: Brian, Thanks for the excellent write up. In approach #2, when a build is done by just replacing RC versions by

Re: How can one handle release candidates in Maven?

2009-05-15 Thread Sahoo
Brian, Thank you for taking time to answer. Sahoo - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: How can one handle release candidates in Maven?

2009-05-15 Thread sebb
[mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have

Re: How can one handle release candidates in Maven?

2009-05-14 Thread Anders Hammar
: Wednesday, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName

Re: How can one handle release candidates in Maven?

2009-05-14 Thread Brian Fox
myproject-0.9) --- Todd Thiessen -Original Message- From: nicolas de loof [mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release

Re: How can one handle release candidates in Maven?

2009-05-14 Thread Sahoo
Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx 2009/5/13 Fabien KRUBA

Re: How can one handle release candidates in Maven?

2009-05-14 Thread Brian Fox
one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx 2009/5/13 Fabien KRUBA fabien.kr...@gmail.com I suppose you can use

How can one handle release candidates in Maven?

2009-05-13 Thread sebb
What I would like to be able to do with Maven is: Create an SVN tag, e.g. myproject-0.9-RC1 from current code in trunk (or perhaps a branch) Create and test the release candidate from the tag. Publish the release candidate somewhere temporarily so others can check if the release candidate is

Re: How can one handle release candidates in Maven?

2009-05-13 Thread Fabien KRUBA
I suppose you can use release:prepare and perform multiple times if you give the RC version number when asked ? http://maven.apache.org/guides/mini/guide-releasing.html On Wed, May 13, 2009 at 8:55 AM, sebb seb...@gmail.com wrote: What I would like to be able to do with Maven is: Create an

RE: How can one handle release candidates in Maven?

2009-05-13 Thread Todd Thiessen
Subject: How can one handle release candidates in Maven? What I would like to be able to do with Maven is: Create an SVN tag, e.g. myproject-0.9-RC1 from current code in trunk (or perhaps a branch) Create and test the release candidate from the tag. Publish the release candidate somewhere

Re: How can one handle release candidates in Maven?

2009-05-13 Thread nicolas de loof
Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx 2009/5/13 Fabien KRUBA fabien.kr...@gmail.com I suppose you can use release:prepare and perform multiple times if you give the

RE: How can one handle release candidates in Maven?

2009-05-13 Thread Todd Thiessen
using the actual release version. (in this case myproject-0.9) --- Todd Thiessen -Original Message- From: nicolas de loof [mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven

Re: How can one handle release candidates in Maven?

2009-05-13 Thread nicolas de loof
: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx 2009/5/13 Fabien KRUBA fabien.kr...@gmail.com I suppose you can

Re: How can one handle release candidates in Maven?

2009-05-13 Thread sebb
On 13/05/2009, nicolas de loof nicolas.del...@gmail.com wrote: Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx So are you saying: create tag myproject-0.9 ... rename tag to

RE: How can one handle release candidates in Maven?

2009-05-13 Thread Todd Thiessen
- From: nicolas de loof [mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:42 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? 1. release:stage with the target version 0.9 (renaming a released JAR may have some strange side-effects) test

Re: How can one handle release candidates in Maven?

2009-05-13 Thread sebb
, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx

Re: How can one handle release candidates in Maven?

2009-05-13 Thread Jason van Zyl
Message- From: sebb [mailto:seb...@gmail.com] Sent: Wednesday, May 13, 2009 8:56 AM To: Maven Users List Subject: How can one handle release candidates in Maven? What I would like to be able to do with Maven is: Create an SVN tag, e.g. myproject-0.9-RC1 from current code in trunk (or perhaps

Re: How can one handle release candidates in Maven?

2009-05-13 Thread nicolas de loof
Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx 2009/5/13 Fabien KRUBA

RE: How can one handle release candidates in Maven?

2009-05-13 Thread Todd Thiessen
: Wednesday, May 13, 2009 9:58 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? With this approach, all RC tags (and the final one) point to a source code that generate the finalName artifact. more complete sample from trunk 1.0-SNAPSHOT

Re: How can one handle release candidates in Maven?

2009-05-13 Thread Jason van Zyl
On 13-May-09, at 8:55 AM, sebb wrote: What I would like to be able to do with Maven is: Create an SVN tag, e.g. myproject-0.9-RC1 from current code in trunk (or perhaps a branch) Sure standard release:prepare from a trunk or more likely a branch. For Maven itself we always use a branch,

Re: How can one handle release candidates in Maven?

2009-05-13 Thread nicolas de loof
[mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:58 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? With this approach, all RC tags (and the final one) point to a source code that generate the finalName artifact. more complete sample

Re: How can one handle release candidates in Maven?

2009-05-13 Thread sebb
- From: nicolas de loof [mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you

Re: How can one handle release candidates in Maven?

2009-05-13 Thread sebb
[mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:58 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? With this approach, all RC tags (and the final one) point to a source code that generate the finalName artifact. more complete sample

Re: How can one handle release candidates in Maven?

2009-05-13 Thread Jason van Zyl
: Wednesday, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx 2009/5/13 Fabien

Re: How can one handle release candidates in Maven?

2009-05-13 Thread Jason van Zyl
. (in this case myproject-0.9) --- Todd Thiessen -Original Message- From: nicolas de loof [mailto:nicolas.del...@gmail.com] Sent: Wednesday, May 13, 2009 9:13 AM To: Maven Users List Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release

Re: How can one handle release candidates in Maven?

2009-05-13 Thread sebb
Subject: Re: How can one handle release candidates in Maven? Use the release:stage goal to create your release candidates. If you find a bug, you just have to release:rollback and rename the tag from finalName to finalName_RCx 2009/5/13 Fabien KRUBA