IvyConfiguration ivyConf = getIvyConfiguration();
try {
IvySettings ivySettings = new IvySettings();
if (propertyFile != null) {
File f = new File(localFilePath,propertyFile);
ivySettings.loadProperties(f);
LOGGER.log(Level.INFO,"Configured Ivy using custom properties " + f);
}
if (ivyConf != null) {
ivySettings.load(new File(ivyConf.getIvyConfPath()));
LOGGER.log(Level.INFO,"Configured Ivy using custom settings " + ivyConf.getIvyConfPath());