Index: /trunk/java-utils/pom.xml
===================================================================
--- /trunk/java-utils/pom.xml	(revision 756)
+++ /trunk/java-utils/pom.xml	(revision 757)
@@ -33,11 +33,3 @@
 		</plugins>
 	</build>
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-            </plugin>
-        </plugins>
-    </reporting>
 </project>
Index: /trunk/quest-core-assertions/pom.xml
===================================================================
--- /trunk/quest-core-assertions/pom.xml	(revision 756)
+++ /trunk/quest-core-assertions/pom.xml	(revision 757)
@@ -1,10 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-core-assertions</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-core-assertions</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-assertions</url>
+		<url>${quest-scm-trunk-dir}/quest-core-assertions</url>
 	</scm>
 	<dependencies>
@@ -12,18 +15,6 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
Index: /trunk/quest-core-coverage/pom.xml
===================================================================
--- /trunk/quest-core-coverage/pom.xml	(revision 756)
+++ /trunk/quest-core-coverage/pom.xml	(revision 757)
@@ -1,10 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-core-coverage</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-core-coverage</name>
   <scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-coverage</url>
+		<url>${quest-scm-trunk-dir}/quest-core-coverage</url>
 	</scm>
   	<dependencies>
@@ -12,23 +15,11 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-usageprofiles</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
Index: /trunk/quest-core-events/pom.xml
===================================================================
--- /trunk/quest-core-events/pom.xml	(revision 756)
+++ /trunk/quest-core-events/pom.xml	(revision 757)
@@ -1,11 +1,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.ugoe.cs.quest</groupId>
 	<artifactId>quest-core-events</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>quest-core-events</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-events</url>
+		<url>${quest-scm-trunk-dir}/quest-core-events</url>
 	</scm>
 	<dependencies>
@@ -18,18 +21,6 @@
                         <groupId>de.ugoe.cs.quest</groupId>
                         <artifactId>quest-misc</artifactId>
-                        <version>0.0.1-SNAPSHOT</version>
+                        <version>${parent.version}</version>
                 </dependency>
 	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
Index: /trunk/quest-core-tasktrees/pom.xml
===================================================================
--- /trunk/quest-core-tasktrees/pom.xml	(revision 756)
+++ /trunk/quest-core-tasktrees/pom.xml	(revision 757)
@@ -1,10 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-core-tasktrees</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-core-tasktrees</name>
   <scm>
-    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-tasktrees</url>
+    <url>${quest-scm-trunk-dir}/quest-core-tasktrees</url>
   </scm>
   <dependencies>
@@ -12,24 +15,6 @@
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-core-events</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
   </dependencies>
-  <distributionManagement>
-    <snapshotRepository>
-      <id>quest-snapshots</id>
-      <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>
-    </snapshotRepository>
-  </distributionManagement>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.3.2</version>
-        <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
 </project>
Index: /trunk/quest-core-testgeneration/pom.xml
===================================================================
--- /trunk/quest-core-testgeneration/pom.xml	(revision 756)
+++ /trunk/quest-core-testgeneration/pom.xml	(revision 757)
@@ -1,10 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-core-testgeneration</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-core-testgeneration</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-testgeneration</url>
+		<url>${quest-scm-trunk-dir}/quest-core-testgeneration</url>
 	</scm>
 	<dependencies>
@@ -12,28 +15,16 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-usageprofiles</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-coverage</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
Index: /trunk/quest-core-usability/pom.xml
===================================================================
--- /trunk/quest-core-usability/pom.xml	(revision 756)
+++ /trunk/quest-core-usability/pom.xml	(revision 757)
@@ -1,10 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-core-usability</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-core-usability</name>
   <scm>
-    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usability</url>
+    <url>${quest-scm-trunk-dir}/quest-core-usability</url>
   </scm>
   <dependencies>
@@ -12,13 +15,7 @@
         <groupId>de.ugoe.cs.quest</groupId>
         <artifactId>quest-core-tasktrees</artifactId>
-        <version>0.0.1-SNAPSHOT</version>
+        <version>${parent.version}</version>
     </dependency>
   </dependencies>
-  <distributionManagement>
-    <snapshotRepository>
-      <id>quest-snapshots</id>
-      <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>
-    </snapshotRepository>
-  </distributionManagement>
   <build>
     <plugins>
@@ -38,12 +35,4 @@
         </executions>
       </plugin>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.5.1</version>
-        <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
-        </configuration>
-      </plugin>
     </plugins>
   </build>
Index: /trunk/quest-core-usageprofiles/pom.xml
===================================================================
--- /trunk/quest-core-usageprofiles/pom.xml	(revision 756)
+++ /trunk/quest-core-usageprofiles/pom.xml	(revision 757)
@@ -1,11 +1,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.ugoe.cs.quest</groupId>
 	<artifactId>quest-core-usageprofiles</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>quest-core-usageprofiles</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usageprofiles</url>
+		<url>${quest-scm-trunk-dir}/quest-core-usageprofiles</url>
 	</scm>
 	<repositories>
@@ -19,5 +22,5 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
@@ -37,15 +40,3 @@
 		</dependency>
 	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
Index: /trunk/quest-misc/.classpath
===================================================================
--- /trunk/quest-misc/.classpath	(revision 756)
+++ /trunk/quest-misc/.classpath	(revision 757)
@@ -1,6 +1,17 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-	<classpathentry kind="src" path="src/main/java"/>
-	<classpathentry kind="src" path="src/main/resources"/>
+	<classpathentry kind="src" output="target/classes" path="src/main/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry including="**/*.java" kind="src" path="src/main/resources"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
 		<attributes>
Index: /trunk/quest-misc/pom.xml
===================================================================
--- /trunk/quest-misc/pom.xml	(revision 756)
+++ /trunk/quest-misc/pom.xml	(revision 757)
@@ -1,10 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-misc</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-misc</name>
   <scm>
-    <url>https://www.trex.informatik.uni-goettingen.de/svn/swephd/pharms/tasktree/trunk/quest-misc</url>
+    <url>${quest-scm-trunk-dir}/quest-misc</url>
   </scm>
   <dependencies>
@@ -14,28 +17,4 @@
       <version>0.0.1-SNAPSHOT</version>
     </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.8.1</version>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
-  <distributionManagement>
-    <snapshotRepository>
-      <id>quest-snapshots</id>
-      <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>
-    </snapshotRepository>
-  </distributionManagement>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.5.1</version>
-        <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
 </project>
Index: /trunk/quest-plugin-core/pom.xml
===================================================================
--- /trunk/quest-plugin-core/pom.xml	(revision 756)
+++ /trunk/quest-plugin-core/pom.xml	(revision 757)
@@ -1,23 +1,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest</artifactId>
+       <version>0.0.1-SNAPSHOT</version>
+    </parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.ugoe.cs.quest</groupId>
 	<artifactId>quest-plugin-core</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>quest-plugin-core</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-core</url>
+		<url>${quest-scm-trunk-dir}/quest-plugin-core</url>
 	</scm>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
Index: /trunk/quest-plugin-guitar/pom.xml
===================================================================
--- /trunk/quest-plugin-guitar/pom.xml	(revision 756)
+++ /trunk/quest-plugin-guitar/pom.xml	(revision 757)
@@ -1,18 +1,15 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.ugoe.cs.quest</groupId>
 	<artifactId>quest-plugin-guitar</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>quest-plugin-guitar</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-guitar</url>
+		<url>${quest-scm-trunk-dir}/quest-plugin-guitar</url>
 	</scm>
-	<repositories>
-		<repository>
-			<id>quest-repo</id>
-			<url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
-		</repository>
-	</repositories>
 	<dependencies>
 		<dependency>
@@ -24,20 +21,20 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-plugin-core</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-usageprofiles</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-misc</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
@@ -47,15 +44,3 @@
 		</dependency>
 	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
Index: /trunk/quest-plugin-jfc/pom.xml
===================================================================
--- /trunk/quest-plugin-jfc/pom.xml	(revision 756)
+++ /trunk/quest-plugin-jfc/pom.xml	(revision 757)
@@ -1,11 +1,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.ugoe.cs.quest</groupId>
 	<artifactId>quest-plugin-jfc</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>quest-plugin-jfc</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-jfc</url>
+		<url>${quest-scm-trunk-dir}/quest-plugin-jfc</url>
 	</scm>
 	<dependencies>
@@ -18,15 +21,15 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-plugin-core</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-misc</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
@@ -38,12 +41,4 @@
 	<build>
 		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
Index: /trunk/quest-plugin-mfc/pom.xml
===================================================================
--- /trunk/quest-plugin-mfc/pom.xml	(revision 756)
+++ /trunk/quest-plugin-mfc/pom.xml	(revision 757)
@@ -1,11 +1,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.ugoe.cs.quest</groupId>
 	<artifactId>quest-plugin-mfc</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>quest-plugin-mfc</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-mfc</url>
+		<url>${quest-scm-trunk-dir}/quest-plugin-mfc</url>
 	</scm>
 	<dependencies>
@@ -18,5 +21,5 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-plugin-core</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
@@ -33,22 +36,14 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-misc</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 	</dependencies>
 	<build>
 		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
Index: /trunk/quest-plugin-php/pom.xml
===================================================================
--- /trunk/quest-plugin-php/pom.xml	(revision 756)
+++ /trunk/quest-plugin-php/pom.xml	(revision 757)
@@ -1,11 +1,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <groupId>de.ugoe.cs.quest</groupId>
+        <artifactId>quest</artifactId>
+        <version>0.0.1-SNAPSHOT</version>
+    </parent>
 	<modelVersion>4.0.0</modelVersion>
-	<groupId>de.ugoe.cs.quest</groupId>
 	<artifactId>quest-plugin-php</artifactId>
-	<version>0.0.1-SNAPSHOT</version>
 	<name>quest-plugin-php</name>
 	<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-php</url>
+		<url>${quest-scm-trunk-dir}/quest-plugin-php</url>
 	</scm>
 	<dependencies>
@@ -18,27 +21,19 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-plugin-core</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-misc</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 	</dependencies>
 	<build>
 		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
Index: /trunk/quest-runner/pom.xml
===================================================================
--- /trunk/quest-runner/pom.xml	(revision 756)
+++ /trunk/quest-runner/pom.xml	(revision 757)
@@ -4,11 +4,14 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
 >
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-runner</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-runner</name>
   <scm>
-    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-runner</url>
+    <url>${quest-scm-trunk-dir}/quest-runner</url>
   </scm>
   <dependencies>
@@ -21,15 +24,15 @@
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-plugin-core</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-ui-core</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-ui-swt</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
@@ -41,20 +44,20 @@
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-plugin-guitar</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-plugin-jfc</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-plugin-mfc</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-plugin-php</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
@@ -109,16 +112,4 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.5.1</version>
-        <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
-          <compilerArgument>-Xlint:all</compilerArgument>
-          <showDeprecation>true</showDeprecation>
-          <showWarnings>true</showWarnings>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
         <configuration>
@@ -148,5 +139,5 @@
                   <groupId>de.ugoe.cs.quest</groupId>
                   <artifactId>quest-plugin-jfc</artifactId>
-                  <version>0.0.1-SNAPSHOT</version>
+                  <version>${parent.version}</version>
                   <classifier>config</classifier>
                   <type>zip</type>
@@ -167,5 +158,5 @@
                   <groupId>de.ugoe.cs.quest</groupId>
                   <artifactId>quest-plugin-mfc</artifactId>
-                  <version>0.0.1-SNAPSHOT</version>
+                  <version>${parent.version}</version>
                   <classifier>config</classifier>
                   <type>zip</type>
@@ -186,5 +177,5 @@
                   <groupId>de.ugoe.cs.quest</groupId>
                   <artifactId>quest-plugin-php</artifactId>
-                  <version>0.0.1-SNAPSHOT</version>
+                  <version>${parent.version}</version>
                   <classifier>config</classifier>
                   <type>zip</type>
Index: /trunk/quest-ui-core/pom.xml
===================================================================
--- /trunk/quest-ui-core/pom.xml	(revision 756)
+++ /trunk/quest-ui-core/pom.xml	(revision 757)
@@ -4,11 +4,14 @@
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
 >
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-ui-core</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-ui-core</name>
   <scm>
-    <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url>
+    <url>${quest-scm-trunk-dir}/quest-ui-core</url>
   </scm>
   <dependencies>
@@ -21,25 +24,25 @@
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-misc</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-core-events</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-core-usageprofiles</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-core-coverage</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-core-assertions</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
@@ -51,10 +54,10 @@
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-core-tasktrees</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
       <groupId>de.ugoe.cs.quest</groupId>
       <artifactId>quest-core-usability</artifactId>
-      <version>0.0.1-SNAPSHOT</version>
+      <version>${parent.version}</version>
     </dependency>
     <dependency>
@@ -69,15 +72,3 @@
     </dependency>
   </dependencies>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.3.2</version>
-        <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
 </project>
Index: /trunk/quest-ui-swt/pom.xml
===================================================================
--- /trunk/quest-ui-swt/pom.xml	(revision 756)
+++ /trunk/quest-ui-swt/pom.xml	(revision 757)
@@ -1,10 +1,13 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>de.ugoe.cs.quest</groupId>
   <artifactId>quest-ui-swt</artifactId>
-  <version>0.0.1-SNAPSHOT</version>
   <name>quest-ui-swt</name>
-<scm>
-		<url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-swt</url>
+    <scm>
+		<url>${quest-scm-trunk-dir}/quest-ui-swt</url>
 	</scm>
 	<repositories>
@@ -12,8 +15,4 @@
 			<id>swt-repo</id>
 			<url>https://swt-repo.googlecode.com/svn/repo</url>
-		</repository>
-		<repository>
-			<id>quest-repo</id>
-			<url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
 		</repository>
 	</repositories>
@@ -27,15 +26,15 @@
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-events</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-assertions</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>de.ugoe.cs.quest</groupId>
 			<artifactId>quest-core-usageprofiles</artifactId>
-			<version>0.0.1-SNAPSHOT</version>
+			<version>${parent.version}</version>
 		</dependency>
 		<dependency>
@@ -144,16 +143,3 @@
 		</profile>
 	</profiles>
-
-	<build>
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.3.2</version>
-				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
 </project>
