SVNClientManager clientManager = SVNClientManager.newInstance(
new DefaultSVNOptions(), username, password);
SVNLogClient logClient = clientManager.getLogClient();
logClient.doLog(svnUrl, new String[] { "." }, SVNRevision.HEAD,
SVNRevision.HEAD, SVNRevision.create(0), true, true, 10,
new ISVNLogEntryHandler() {
@Override
public void handleLogEntry(SVNLogEntry logEntry)
throws SVNException {
ret.add(new Commit(project, logEntry));
}