diff --git a/Kieker.WebGUI/Read.me b/Kieker.WebGUI/Read.me
new file mode 100644
index 0000000000000000000000000000000000000000..986af16cd1407c4cd0e81e0b070e8c3fba753b0e
--- /dev/null
+++ b/Kieker.WebGUI/Read.me
@@ -0,0 +1,7 @@
+The project "Kieker.WebGUI" can be started via Maven (3). Just use the command
+
+mvn jetty:run
+
+to pack the war-file, deploy it on jetty and start jetty. The web tool is then available at
+
+http://localhost:8080/Kieker.WebGUI/main
\ No newline at end of file
diff --git a/Kieker.WebGUI/pom.xml b/Kieker.WebGUI/pom.xml
index f5c753a3bd05bccb62b52126badb2c8c8c87eed2..49a8a91f362db1ad7ff5fad56a196046bb39e9f1 100644
--- a/Kieker.WebGUI/pom.xml
+++ b/Kieker.WebGUI/pom.xml
@@ -270,6 +270,14 @@
                 <configuration>
                     <configLocation>quality-config/cs-conf.xml</configLocation>
                 </configuration>
+                <executions>
+                    <execution>
+                        <phase>test</phase>
+                        <goals>
+                            <goal>checkstyle</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>
@@ -280,6 +288,14 @@
                     <threshold>Low</threshold>
                     <excludeFilterFile>quality-config/fb-filter.xml</excludeFilterFile>
                 </configuration>
+                <executions>
+                    <execution>
+                        <phase>test</phase>
+                        <goals>
+                            <goal>findbugs</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -293,6 +309,14 @@
                     </rulesets>
                     <targetJdk>1.6</targetJdk>
                 </configuration>
+                <executions>
+                    <execution>
+                        <phase>test</phase>
+                        <goals>
+                            <goal>pmd</goal>
+                        </goals>
+                    </execution>
+                </executions>
             </plugin>
             <plugin>
                 <groupId>org.mortbay.jetty</groupId>
@@ -332,12 +356,37 @@
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
                 <version>2.3</version>
-                <configuration>
-                    <descriptors>
-                        <descriptor>descriptors/descriptor-src.xml</descriptor>
-                        <descriptor>descriptors/descriptor-bin.xml</descriptor>
-                    </descriptors>
-                </configuration>
+                <executions>
+                    <execution>
+                        <id>Sources-Archive</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <appendAssemblyId>false</appendAssemblyId>
+                            <finalName>kieker-webgui-${project.version}_sources</finalName>
+                            <descriptors>
+                                <descriptor>descriptors/descriptor-src.xml</descriptor>
+                            </descriptors>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>Binary-Archive</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <appendAssemblyId>false</appendAssemblyId>
+                            <finalName>kieker-webgui-${project.version}_binaries</finalName>
+                            <descriptors>
+                                <descriptor>descriptors/descriptor-bin.xml</descriptor>
+                            </descriptors>
+                        </configuration>
+                    </execution>
+                </executions>
+                
             </plugin>
         </plugins>
     </build>