Map<Key, List<Commit>> newCommits = new HashMap<Key, List<Commit>>();
Map<Key, Map<String, ?>> serviceSettings = getSettings()
.getServiceSettings(SvnService.class);
for (Map.Entry<Key, Map<String, ?>> configEntry : serviceSettings
.entrySet()) {
Key project = configEntry.getKey();
String url = configEntry.getValue().get("url").toString();
String username = configEntry.getValue().get("username").toString();
String password = configEntry.getValue().get("password").toString();
newCommits.put(project,
fetchCommits(project, url, username, password));