if (basedir == null) {
return Status.CANCEL_STATUS;
}
ILaunchConfiguration configuration = createLaunchConfiguration(basedir, "eclipse:clean eclipse:eclipse");
if (configuration != null) {
ILaunch launch = configuration.launch(ILaunchManager.RUN_MODE, new SubProgressMonitor(monitor, 75));
DebugPlugin.getDefault().addDebugEventListener(
new MavenProcessListener(launch.getProcesses()[0], javaProject.getProject()));
}
}
catch (Exception e) {