I have the following ivy.xml
The ${version} property is inside a build.properties, this works very well . I
have other modules, where they have the same version, thus the need
of a version variable.
But IvyDE doesn't load the build.properties file to input the variable into
the ivy.xml file.
To replace every ${version} is going to be some work, for every release.
So, is there any way to make IvyDE input the variable ?
<dependency name="core-framework" rev="${version}"
changing="true" conf="core"/>
<dependency name="core-da-util" rev="${version}"
changing="true" conf="core"/>
<dependency name="core-profile" rev="${version}"
changing="true" conf="core"/>
<dependency name="core-service" rev="${version}"
changing="true" conf="core"/>
Prakkash K