I'm using Apache Ivy to manage dependencies in the project with several developers. They will share most of the Ivy configuration, but some pieces (like corporate proxy username and password) should be developer-specific. I've created a reference file for everyone to place in the ~/.ivy2/ivysettings.xml
(this is where developer could specify his password), but cannot include it from the ivy:configure
on Windows machines (Ivy does not expand environment variables there, and pointing to every developer's ~
is problematic).
Any suggestions on how could I allow developer-wide configuration in this setup?