Index: trunk/autoquest-plugin-android/pom.xml
===================================================================
--- trunk/autoquest-plugin-android/pom.xml	(revision 1786)
+++ trunk/autoquest-plugin-android/pom.xml	(revision 1788)
@@ -3,5 +3,5 @@
         <groupId>de.ugoe.cs.autoquest</groupId>
         <artifactId>autoquest</artifactId>
-        <version>0.1.1-SNAPSHOT</version>
+        <version>0.1.2-SNAPSHOT</version>
         <relativePath>../autoquest/pom.xml</relativePath>
     </parent>
@@ -54,22 +54,4 @@
                 </configuration>
             </plugin>
-            <plugin>
-                <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.2-beta-2</version>
-                <configuration>
-                    <descriptors>
-                        <descriptor>src/main/assembly/config.xml</descriptor>
-                    </descriptors>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>make-assembly</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>single</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
     </build>
Index: trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/ANDROIDPlugin.java
===================================================================
--- trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/ANDROIDPlugin.java	(revision 1788)
+++ trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/ANDROIDPlugin.java	(revision 1788)
@@ -0,0 +1,60 @@
+//   Copyright 2012 Georg-August-Universität Göttingen, Germany
+//
+//   Licensed under the Apache License, Version 2.0 (the "License");
+//   you may not use this file except in compliance with the License.
+//   You may obtain a copy of the License at
+//
+//       http://www.apache.org/licenses/LICENSE-2.0
+//
+//   Unless required by applicable law or agreed to in writing, software
+//   distributed under the License is distributed on an "AS IS" BASIS,
+//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//   See the License for the specific language governing permissions and
+//   limitations under the License.
+
+package de.ugoe.cs.autoquest.plugin.android;
+
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+
+import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
+
+/**
+ * <p>
+ * Identifier class for the AutoQUEST Android plug-in.
+ * </p>
+ * 
+ * @author Florian Unger
+ * @version 1.0
+ */
+public class ANDROIDPlugin implements AutoQUESTPlugin {
+	
+	/**
+     * <p>
+     * The command packages of this plug-in.
+     * </p>
+     */
+    private final static String[] commandPackages = new String[]
+        { "de.ugoe.cs.autoquest.plugin.android.commands" };
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getTitle()
+     */
+    @Override
+    public String getTitle() {
+        return "Android-Plugin";
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getCommandPackages()
+     */
+    @Override
+    public List<String> getCommandPackages() {
+        return Collections.unmodifiableList(Arrays.asList(commandPackages));
+    }
+}
Index: trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/AndroidPlugin.java
===================================================================
--- trunk/autoquest-plugin-android/src/main/java/de/ugoe/cs/autoquest/plugin/android/AndroidPlugin.java	(revision 1786)
+++ 	(revision )
@@ -1,60 +1,0 @@
-//   Copyright 2012 Georg-August-Universität Göttingen, Germany
-//
-//   Licensed under the Apache License, Version 2.0 (the "License");
-//   you may not use this file except in compliance with the License.
-//   You may obtain a copy of the License at
-//
-//       http://www.apache.org/licenses/LICENSE-2.0
-//
-//   Unless required by applicable law or agreed to in writing, software
-//   distributed under the License is distributed on an "AS IS" BASIS,
-//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-//   See the License for the specific language governing permissions and
-//   limitations under the License.
-
-package de.ugoe.cs.autoquest.plugin.android;
-
-import java.util.Arrays;
-import java.util.Collections;
-import java.util.List;
-
-import de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin;
-
-/**
- * <p>
- * Identifier class for the AutoQUEST Android plug-in.
- * </p>
- * 
- * @author Florian Unger
- * @version 1.0
- */
-public class AndroidPlugin implements AutoQUESTPlugin {
-	
-	/**
-     * <p>
-     * The command packages of this plug-in.
-     * </p>
-     */
-    private final static String[] commandPackages = new String[]
-        { "de.ugoe.cs.autoquest.plugin.android.commands" };
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getTitle()
-     */
-    @Override
-    public String getTitle() {
-        return "Android-Plugin";
-    }
-
-    /*
-     * (non-Javadoc)
-     * 
-     * @see de.ugoe.cs.autoquest.plugin.AutoQUESTPlugin#getCommandPackages()
-     */
-    @Override
-    public List<String> getCommandPackages() {
-        return Collections.unmodifiableList(Arrays.asList(commandPackages));
-    }
-}
