瀏覽代碼

Added dependencies to stext.ui

Andreas Muelder 9 年之前
父節點
當前提交
fea9e69799

+ 2 - 1
test-plugins/org.yakindu.sct.model.sgraph.test/META-INF/MANIFEST.MF

@@ -10,7 +10,8 @@ Require-Bundle: org.yakindu.sct.model.sgraph,
  org.eclipse.core.runtime,
  org.yakindu.sct.model.stext,
  org.eclipse.xtext.junit4,
- org.yakindu.sct.test.models
+ org.yakindu.sct.test.models,
+ org.yakindu.sct.model.stext.ui
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: JavaSE-1.7
 Bundle-Vendor: statecharts.org

+ 0 - 2
test-plugins/org.yakindu.sct.model.sgraph.test/src/org/yakindu/sct/model/sgraph/test/SGraphTestModule.java

@@ -12,7 +12,6 @@ package org.yakindu.sct.model.sgraph.test;
 
 import org.eclipse.emf.ecore.EValidator;
 import org.eclipse.xtext.Constants;
-import org.yakindu.sct.model.stext.resource.StextResource;
 
 import com.google.inject.Binder;
 import com.google.inject.Module;
@@ -29,7 +28,6 @@ public class SGraphTestModule implements Module {
 		binder.bind(String.class).annotatedWith(Names.named(Constants.LANGUAGE_NAME))
 				.toInstance("org.yakindu.sct.model.sgraph");
 		binder.bind(EValidator.Registry.class).toInstance(EValidator.Registry.INSTANCE);
-		binder.bind(org.eclipse.emf.ecore.resource.Resource.class).to(StextResource.class);
 	}
 
 }