DownloadReport dReport = resolver.download(selectedArtifacts, new DownloadOptions(_settings, cacheManager, _eventManager, useOrigin));
ArtifactDownloadReport[] adrs = dReport.getArtifactsReports();
for (int j = 0; j < adrs.length; j++) {
if (adrs[j].getDownloadStatus() == DownloadStatus.FAILED) {
Message.warn("\t[NOT FOUND ] "+adrs[j].getArtifact());
resolver.reportFailure(adrs[j].getArtifact());
}
}
// update concerned reports
String[] dconfs = dependencies[i].getRootModuleConfigurations();
for (int j = 0; j < dconfs.length; j++) {