diff --git a/org.fortiss.tooling.kernel/trunk/META-INF/MANIFEST.MF b/org.fortiss.tooling.kernel/trunk/META-INF/MANIFEST.MF
index 139603279dfaad0ccc32c33f56022ce3ffd31477..143236e2ef045a5cfd52711ba1c18307484efc62 100644
--- a/org.fortiss.tooling.kernel/trunk/META-INF/MANIFEST.MF
+++ b/org.fortiss.tooling.kernel/trunk/META-INF/MANIFEST.MF
@@ -7,8 +7,6 @@ Bundle-Activator: org.fortiss.tooling.kernel.ToolingKernelActivator
 Bundle-Vendor: fortiss
 Require-Bundle: org.eclipse.ui;visibility:=reexport,
  org.eclipse.core.runtime;visibility:=reexport,
- org.unicase.emfstore;visibility:=reexport,
- org.unicase.ecpemfstorebridge;visibility:=reexport,
- org.unicase.ui.meeditor;visibility:=reexport
+ org.eclipse.xtext;bundle-version="1.0.1"
 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
 Bundle-ActivationPolicy: lazy
diff --git a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java
index 674382a7b1ab8c1d331d7c8bc8529950817f9dab..07d43ee59f0ef605fb7426dd0569ffa9d6878283 100644
--- a/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java
+++ b/org.fortiss.tooling.kernel/trunk/src/org/fortiss/tooling/kernel/ToolingKernelActivator.java
@@ -1,6 +1,8 @@
 package org.fortiss.tooling.kernel;
 
+import org.eclipse.emf.ecore.EClass;
 import org.eclipse.ui.plugin.AbstractUIPlugin;
+import org.eclipse.xtext.XtextPackage;
 import org.fortiss.tooling.kernel.internal.ServiceManager;
 import org.osgi.framework.BundleContext;
 
@@ -27,6 +29,8 @@ public class ToolingKernelActivator extends AbstractUIPlugin {
 		plugin = this;
 
 		ServiceManager.start();
+
+		EClass c = XtextPackage.eINSTANCE.eClass();
 	}
 
 	/** {@inheritDoc} */