RE: using buildnumber effectively

2005-12-29 Thread Ferrer, Eric
me 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 sho

RE: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
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 t

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? Re

RE: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
} > > fis.close(); > } > } > > > } > }catch (IOException ioe) { > System.err.println("Error reading manifest > file for > properties lookup : " + io

RE: using buildnumber effectively

2005-12-28 Thread Ferrer, Eric
} finally { if(jarFile != null) try{ jarFile.close(); } catch(java.io.IOException ioe) { //nothing to do } } } } } -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 28, 200

Re: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
tice to show this > >> build/release in your > >> applications? > >> > >> For instance, I would want to see the > build/release > >> number on the footer > >> of my website. > >> > >> -Original Message- > >> F

Re: using buildnumber effectively

2005-12-28 Thread Alexey N. Solofnenko
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 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 or with and . Regards Ivan --- "Ferrer, Eric" <[EMAIL PROTECTED]> wrot

RE: using buildnumber effectively

2005-12-28 Thread Ivan Ivanov
est practice to show this > build/release in your > applications? > > For instance, I would want to see the build/release > number on the footer > of my website. > > -Original Message- > From: Mark Lybarger [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 20,

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) &l

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

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 occurin

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

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. >

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