RE: using buildnumber effectively

2005-12-29 Thread Ferrer, Eric
offline the ant user group. -Eric -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 7:25 PM To: Ant Users List Subject: RE: using buildnumber effectively Eric, This is pretty interesting. Several years I wrote a similar taglib that showed

RE: using buildnumber effectively

2005-12-28 Thread Ferrer, Eric
:[EMAIL PROTECTED] Sent: Tuesday, December 20, 2005 5:53 AM To: Ant Users List Subject: Re: using buildnumber effectively that's definately a great idea. how do i get the branch name of cvs from within ant? basically, which cvs branch is this? On 12/19/05, Anderson, Rob (Global Trade) [EMAIL

RE: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
: using buildnumber effectively that's definately a great idea. how do i get the branch name of cvs from within ant? basically, which cvs branch is this? On 12/19/05, Anderson, Rob (Global Trade) [EMAIL PROTECTED] wrote: Now, suppose I branch the project to create REL_4_1

RE: using buildnumber effectively

2005-12-28 Thread Ferrer, Eric
PROTECTED] Sent: Wednesday, December 28, 2005 4:14 PM To: Ant Users List Subject: RE: using buildnumber effectively Hello, You can add a token in your web pages, says @BUILD_NUMBER@ and either replace it with replace or with copy and filterchain. Regards Ivan --- Ferrer, Eric [EMAIL PROTECTED] wrote

Re: using buildnumber effectively

2005-12-28 Thread Alexey N. Solofnenko
the manifest.mf as a source for storing build/release/version information and successfully reading it at run-time to display in a jsp? -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 4:14 PM To: Ant Users List Subject: RE: using buildnumber

Re: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
/version information and successfully reading it at run-time to display in a jsp? -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 4:14 PM To: Ant Users List Subject: RE: using buildnumber effectively Hello, You can add

RE: using buildnumber effectively

2005-12-28 Thread Ferrer, Eric
Users List Subject: Re: using buildnumber effectively Hello Eric, Using Alexey's code (I was going to provide similar one) you can easily build a taglib that will extract the desired version and show it in your JSPs. Regards Ivan --- Alexey N. Solofnenko [EMAIL PROTECTED] wrote: This is RTFM

RE: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
To: Ant Users List Subject: Re: using buildnumber effectively Hello Eric, Using Alexey's code (I was going to provide similar one) you can easily build a taglib that will extract the desired version and show it in your JSPs. Regards Ivan --- Alexey N. Solofnenko [EMAIL PROTECTED] wrote

RE: using buildnumber effectively

2005-12-28 Thread Ferrer, Eric
PROTECTED] Sent: Wednesday, December 28, 2005 6:00 PM To: Ant Users List Subject: RE: using buildnumber effectively Hello Eric, this is fine. However, don't you think that it might slow down your web app, since every page you hit should retrieve the version from the manifest file again? Regards

RE: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
} } } } } -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 4:57 PM To: Ant Users List Subject: Re: using buildnumber effectively Hello Eric, Using Alexey's code (I was going to provide similar === message truncated

Re: using buildnumber effectively

2005-12-20 Thread Mark Lybarger
that's definately a great idea. how do i get the branch name of cvs from within ant? basically, which cvs branch is this? On 12/19/05, Anderson, Rob (Global Trade) [EMAIL PROTECTED] wrote: Now, suppose I branch the project to create REL_4_1. Development is still occuring in the

RE: using buildnumber effectively

2005-12-20 Thread Anderson, Rob (Global Trade)
. -Rob Anderson -Original Message- From: Mark Lybarger [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 20, 2005 4:53 AM To: Ant Users List Subject: Re: using buildnumber effectively that's definately a great idea. how do i get the branch name of cvs from within ant? basically

using buildnumber effectively

2005-12-19 Thread Mark Lybarger
We're looking to attach a buildnumber to our current build process. Only test and production builds will need to have the buildnumber incremented. I've noticed the buildnumber task in ant and am curious how others are using this task? Working from the head, it would seem fairly simple: - update

RE: using buildnumber effectively

2005-12-19 Thread Anderson, Rob (Global Trade)
We're looking to attach a buildnumber to our current build process. Only test and production builds will need to have the buildnumber incremented. It's OK to increment the buildnumber for development builds too. I've noticed the buildnumber task in ant and am curious how others are

Re: using buildnumber effectively

2005-12-19 Thread Mark Lybarger
On 12/19/05, Anderson, Rob (Global Trade) [EMAIL PROTECTED] wrote: We're looking to attach a buildnumber to our current build process. Only test and production builds will need to have the buildnumber incremented. It's OK to increment the buildnumber for development builds too. I've

RE: using buildnumber effectively

2005-12-19 Thread Anderson, Rob (Global Trade)
Now, suppose I branch the project to create REL_4_1. Development is still occuring in the head, but REL_4_1 is gearing towards production. The version number would get bumped in this branch, and not reflected back into the head. Is there a way to do the CVS merging from