> 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
