}
List<String> classpath = new ArrayList<String>(Arrays.asList(super.getClasspath(configuration)));
ClojureProject clojureProject = ClojureCore.getClojureProject(LaunchUtils.getProject(configuration));
for (IFolder f: clojureProject.sourceFolders()) {
String sourcePath = f.getLocation().toOSString();
while (classpath.contains(sourcePath)) {
// The sourcePath already exists, remove it first
classpath.remove(sourcePath);