}
Properties properties = loadMavenProperties();
javaLauncher.setMainClass(getMainClassName());
ClassPath classpath = new ClassPath();
File classworldsJar;
classworldsJar = getClassworldsJar();
classpath.addPathElement(classworldsJar.getAbsolutePath());
javaLauncher.setClasspath(classpath);
File localRepo = getLocalRepository();
if (localRepo != null && localRepo.exists()) {
addMavenOpts("maven.repo.local", localRepo.getAbsolutePath());
}