Index: /trunk/quest-misc/pom.xml
===================================================================
--- /trunk/quest-misc/pom.xml	(revision 670)
+++ /trunk/quest-misc/pom.xml	(revision 671)
@@ -9,4 +9,9 @@
   </scm>
   <dependencies>
+    <dependency>
+      <groupId>de.ugoe.cs</groupId>
+      <artifactId>java-utils</artifactId>
+      <version>0.0.1-SNAPSHOT</version>
+    </dependency>
     <dependency>
       <groupId>junit</groupId>
Index: /trunk/quest-misc/src/main/java/de/ugoe/cs/quest/CommandHelpers.java
===================================================================
--- /trunk/quest-misc/src/main/java/de/ugoe/cs/quest/CommandHelpers.java	(revision 671)
+++ /trunk/quest-misc/src/main/java/de/ugoe/cs/quest/CommandHelpers.java	(revision 671)
@@ -0,0 +1,56 @@
+package de.ugoe.cs.quest;
+
+import java.util.logging.Level;
+
+import de.ugoe.cs.util.console.Console;
+
+/**
+ * <p>
+ * Helper class that collects methods that are often used by the commands.
+ * </p>
+ * 
+ * @author Steffen Herbold
+ * @version 1.0
+ */
+public class CommandHelpers {
+
+	/**
+	 * <p>
+	 * Prints a message to error stream of the {@link Console} that an object
+	 * has not been found in the storage.
+	 * </p>
+	 * 
+	 * @param objectName
+	 *            name of the object
+	 */
+	public static void objectNotFoundMessage(String objectName) {
+		Console.printerrln("Object " + objectName + " not found in storage.");
+	}
+
+	/**
+	 * <p>
+	 * Prints a message to the error stream of the {@link Console} that an
+	 * object is not of an expected type.
+	 * </p>
+	 * 
+	 * @param objectName
+	 *            name of the object
+	 * @param type
+	 *            expected type
+	 */
+	public static void objectNotType(String objectName, String type) {
+		Console.printerrln("Object " + objectName + "not of type " + type + ".");
+	}
+
+	/**
+	 * <p>
+	 * Prints a message to the trace stream of the {@link Console} that an
+	 * object in the storage has been overwritten.
+	 * </p>
+	 * 
+	 * @param objectName
+	 */
+	public static void dataOverwritten(String objectName) {
+		Console.traceln(Level.INFO, "Existing object " + objectName + " overwritten.");
+	}
+}
Index: /trunk/quest-plugin-guitar/pom.xml
===================================================================
--- /trunk/quest-plugin-guitar/pom.xml	(revision 670)
+++ /trunk/quest-plugin-guitar/pom.xml	(revision 671)
@@ -38,5 +38,5 @@
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
-			<artifactId>quest-ui-core</artifactId>
+			<artifactId>quest-misc</artifactId>
 			<version>0.0.1-SNAPSHOT</version>
 		</dependency>
Index: /trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java
===================================================================
--- /trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java	(revision 670)
+++ /trunk/quest-plugin-guitar/src/main/java/de/ugoe/cs/quest/plugin/guitar/EFGModelGenerator.java	(revision 671)
@@ -11,5 +11,4 @@
 import de.ugoe.cs.quest.plugin.guitar.eventcore.GUITAREventType;
 import de.ugoe.cs.quest.plugin.guitar.eventcore.GUITARReplayable;
-import de.ugoe.cs.quest.ui.commands.CMDupdateModel;
 import de.ugoe.cs.quest.usageprofiles.DeterministicFiniteAutomaton;
 import de.ugoe.cs.quest.usageprofiles.FirstOrderMarkovModel;
Index: /trunk/quest-plugin-jfc/pom.xml
===================================================================
--- /trunk/quest-plugin-jfc/pom.xml	(revision 670)
+++ /trunk/quest-plugin-jfc/pom.xml	(revision 671)
@@ -20,9 +20,19 @@
 			<version>0.0.1-SNAPSHOT</version>
 		</dependency>
-                <dependency>
-                        <groupId>de.ugoe.cs.quest</groupId>
-                        <artifactId>quest-ui-core</artifactId>
-                        <version>0.0.1-SNAPSHOT</version>
-                </dependency>
+		<dependency>
+			<groupId>de.ugoe.cs.quest</groupId>
+			<artifactId>quest-core-events</artifactId>
+			<version>0.0.1-SNAPSHOT</version>
+		</dependency>
+		<dependency>
+			<groupId>de.ugoe.cs.quest</groupId>
+			<artifactId>quest-misc</artifactId>
+			<version>0.0.1-SNAPSHOT</version>
+		</dependency>
+		<dependency>
+			<groupId>net.sourceforge.collections</groupId>
+			<artifactId>collections-generic</artifactId>
+			<version>4.01</version>
+		</dependency>
 	</dependencies>
 	<build>
Index: /trunk/quest-plugin-mfc/pom.xml
===================================================================
--- /trunk/quest-plugin-mfc/pom.xml	(revision 670)
+++ /trunk/quest-plugin-mfc/pom.xml	(revision 671)
@@ -25,9 +25,4 @@
 			<version>1.6</version>
 		</dependency>
-		<!--dependency>
-			<groupId>net.sourceforge.collections</groupId>
-			<artifactId>collections-generic</artifactId>
-			<version>4.01</version>
-		</dependency-->
 		<dependency>
 			<groupId>jdom</groupId>
@@ -42,5 +37,5 @@
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
-			<artifactId>quest-ui-core</artifactId>
+			<artifactId>quest-misc</artifactId>
 			<version>0.0.1-SNAPSHOT</version>
 		</dependency>
Index: /trunk/quest-plugin-php/pom.xml
===================================================================
--- /trunk/quest-plugin-php/pom.xml	(revision 670)
+++ /trunk/quest-plugin-php/pom.xml	(revision 671)
@@ -27,5 +27,5 @@
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
-			<artifactId>quest-ui-core</artifactId>
+			<artifactId>quest-misc</artifactId>
 			<version>0.0.1-SNAPSHOT</version>
 		</dependency>
Index: /trunk/quest-ui-core/pom.xml
===================================================================
--- /trunk/quest-ui-core/pom.xml	(revision 670)
+++ /trunk/quest-ui-core/pom.xml	(revision 671)
@@ -16,4 +16,9 @@
       <groupId>de.ugoe.cs</groupId>
       <artifactId>java-utils</artifactId>
+      <version>0.0.1-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>de.ugoe.cs.quest</groupId>
+      <artifactId>quest-misc</artifactId>
       <version>0.0.1-SNAPSHOT</version>
     </dependency>
Index: unk/quest-ui-core/src/main/java/de/ugoe/cs/quest/CommandHelpers.java
===================================================================
--- /trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/CommandHelpers.java	(revision 670)
+++ 	(revision )
@@ -1,56 +1,0 @@
-package de.ugoe.cs.quest;
-
-import java.util.logging.Level;
-
-import de.ugoe.cs.util.console.Console;
-
-/**
- * <p>
- * Helper class that collects methods that are often used by the commands.
- * </p>
- * 
- * @author Steffen Herbold
- * @version 1.0
- */
-public class CommandHelpers {
-
-	/**
-	 * <p>
-	 * Prints a message to error stream of the {@link Console} that an object
-	 * has not been found in the storage.
-	 * </p>
-	 * 
-	 * @param objectName
-	 *            name of the object
-	 */
-	public static void objectNotFoundMessage(String objectName) {
-		Console.printerrln("Object " + objectName + " not found in storage.");
-	}
-
-	/**
-	 * <p>
-	 * Prints a message to the error stream of the {@link Console} that an
-	 * object is not of an expected type.
-	 * </p>
-	 * 
-	 * @param objectName
-	 *            name of the object
-	 * @param type
-	 *            expected type
-	 */
-	public static void objectNotType(String objectName, String type) {
-		Console.printerrln("Object " + objectName + "not of type " + type + ".");
-	}
-
-	/**
-	 * <p>
-	 * Prints a message to the trace stream of the {@link Console} that an
-	 * object in the storage has been overwritten.
-	 * </p>
-	 * 
-	 * @param objectName
-	 */
-	public static void dataOverwritten(String objectName) {
-		Console.traceln(Level.INFO, "Existing object " + objectName + " overwritten.");
-	}
-}
