Bug 546370: [Headless] create a blacklist for early startup extensions

  add svn and git to startup blacklist

Change-Id: I7dbeed71c76bbaada192d3c2bdc1505ba0c384f0
diff --git a/plugins/org.eclipse.ease/src/org/eclipse/ease/applications/RunHeadlessScript.java b/plugins/org.eclipse.ease/src/org/eclipse/ease/applications/RunHeadlessScript.java
index e5a613f..fc7c44b 100644
--- a/plugins/org.eclipse.ease/src/org/eclipse/ease/applications/RunHeadlessScript.java
+++ b/plugins/org.eclipse.ease/src/org/eclipse/ease/applications/RunHeadlessScript.java
@@ -42,7 +42,8 @@
 public class RunHeadlessScript implements IApplication {
 
 	/** List of classes that should not be loaded on early startup. */
-	private static final Collection<String> EARLY_STARTUP_BLACKLIST = Arrays.asList();
+	private static final Collection<String> EARLY_STARTUP_BLACKLIST = Arrays.asList("org.eclipse.team.svn.ui.startup.SVNCoreStartup",
+			"org.eclipse.egit.ui.internal.clone.GitCloneDropAdapter");
 
 	@Override
 	public Object start(final IApplicationContext context) throws Exception {