sb.append("Building classpath (").append(getPathid()).append(")");
sb.append(" with ");
sb.append(organisation).append("#").append(module).append(";").append(revision);
sb.append(" conf=").append(conf);
log(sb.toString(), Project.MSG_DEBUG);
IvyCachePath pluginCachePath = new IvyCachePath();
pluginCachePath.setOrganisation(organisation);
pluginCachePath.setModule(module);
pluginCachePath.setRevision(revision);
pluginCachePath.setConf(conf);
pluginCachePath.setPathid(getPathid());
pluginCachePath.setLog(LogOptions.LOG_DOWNLOAD_ONLY);
pluginCachePath.setInline(true);
pluginCachePath.setSettingsRef(ivyRef);
initTask(pluginCachePath).execute();
}