That works perfectly. Thank you. -- tBs
> -----Original Message----- > From: Stephen Haberman [mailto:[email protected]] > Sent: Friday, August 06, 2010 12:32 PM > To: [email protected] > Subject: Re: Changing from SNAPSHOT to release version > > > > Do I really have to go through and change every ivy.xml file (there > are 40) > > or is there a process for taking a full system from integration to > release? > > You could define a property in your ivysettings.xml: > > <property name="integration.rev" value="latest.integration" > override="false"/> > > Then in your ivy.xml: > > <dependency ... rev="${integration.rev}"/> > > And then when you build a release: > > ant -Dintegration.rev=1.0 > > Pretty sure that would work. > > - Stephen
