> i dont know anything about ANT and have been trying to work on a
> solution by looking at our current build scripts and reading up on ANT
[quoted text clipped - 18 lines]
> something like a variable of App20050625 and assign it to a name
> (property?) of CVStag within the build.xml file?
ant -DCVStag=App20050625 target1 target2 ...
Within the build.xml file, use ${CVStag} to get the value of the property.
Other possibilities include defining the property within the build.xml
file or in a properties file that ANT reads. These may not be
appropriate for your use however, unless there is some way for CVS to
embed the value in a file upon checkout and then you would be golden.
HTH,
Ray

Signature
XML is the programmer's duct tape.
rrothberg@gmail.com - 28 Jun 2005 19:18 GMT
thanks, i have no idea how they would take that and embed it into an
app, but that's their problem :). writing it out to a file is
extremely simple. CVS doesn't do it, but it's easy enough to do with
BASH.