diff --git a/pom.xml b/pom.xml
index b8128c21ecd4ab21aef3f89163f1e35d310ec349..3fb6ea771d72ca076fbd70a149729e747aeb7a97 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,16 +23,7 @@
 		<java.version>1.6</java.version>
 	</properties>
 
-	<issueManagement>
-		<system>GitLab</system>
-		<url>https://build.se.informatik.uni-kiel.de/gitlab/chw/teetime/issues/</url>
-	</issueManagement>
-
 	<distributionManagement>
-		<site>
-			<id>teetime.sf.net</id>
-			<url>scp://shell.sourceforge.net/home/project-web/teetime/htdocs</url>
-		</site>
 		<snapshotRepository>
 			<id>teetime-deployment</id>
 			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
@@ -64,19 +55,14 @@
 		<connection>scm:git:https://build.se.informatik.uni-kiel.de/gitlab/chw/teetime.git</connection>
 		<developerConnection>scm:git:ssh://gitlab@build.se.informatik.uni-kiel.de:chw/teetime.git</developerConnection>
 		<url>https://build.se.informatik.uni-kiel.de/gitlab/chw/teetime/</url>
-		<tag>teetime-1.0</tag>
 	</scm>
 
-	<ciManagement>
-		<system>Jenkins</system>
-		<url>https://build.se.informatik.uni-kiel.de/jenkins/view/TeeTime/</url>
-	</ciManagement>
-
 	<dependencies>
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
 			<version>4.11</version>
+			<scope>test</scope>
 		</dependency>
 		<dependency>
 			<groupId>org.hamcrest</groupId>
@@ -121,12 +107,7 @@
 
 	<build>
 		<plugins>
-			<!-- Release plugin -->
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-release-plugin</artifactId>
-				<version>2.5.1</version>
-			</plugin>
+
 			<!-- we want JDK 1.6 source and binary compatibility -->
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
@@ -219,9 +200,7 @@
 				<executions>
 					<execution>
 						<phase>test</phase>
-						<goals>
-							<goal>check</goal>
-						</goals>
+						<goals><goal>check</goal></goals>
 						<configuration>
 							<configLocation>${project.basedir}/conf/quality-config/cs-conf.xml</configLocation>
 							<includeTestSourceDirectory>true</includeTestSourceDirectory>
@@ -281,59 +260,12 @@
 					</execution>
 				</executions>
 			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-site-plugin</artifactId>
-				<version>3.3</version>
-				<dependencies>
-					<!-- for using markdown syntax -->
-					<dependency>
-						<groupId>org.apache.maven.doxia</groupId>
-						<artifactId>doxia-module-markdown</artifactId>
-						<version>1.3</version>
-					</dependency>
-					<!-- add support for ssh/scp -->
-					<dependency>
-						<groupId>org.apache.maven.wagon</groupId>
-						<artifactId>wagon-ssh</artifactId>
-						<version>1.0</version>
-					</dependency>
-					<!-- skin -->
-					<dependency>
-						<groupId>lt.velykis.maven.skins</groupId>
-						<artifactId>reflow-velocity-tools</artifactId>
-						<version>1.1.1</version>
-					</dependency>
-					<!-- Reflow skin requires Velocity >= 1.7 -->
-					<dependency>
-						<groupId>org.apache.velocity</groupId>
-						<artifactId>velocity</artifactId>
-						<version>1.7</version>
-					</dependency>
-				</dependencies>
-			</plugin>
+
 		</plugins>
 	</build>
 
 	<reporting>
 		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-changes-plugin</artifactId>
-				<version>2.11</version>
-				<configuration>
-					<issueLinkTemplatePerSystem>
-						<Gitlab>%URL%/%ISSUE%</Gitlab>
-					</issueLinkTemplatePerSystem>
-				</configuration>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>changes-report</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-checkstyle-plugin</artifactId>
@@ -347,19 +279,6 @@
 				</reportSets>
 			</plugin>
 
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-javadoc-plugin</artifactId>
-				<version>2.10.1</version>
-				<configuration>
-					<links>
-						<link>${basedir}/src/site/index.html</link>
-					</links>
-					<!-- <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile> -->
-					<!-- <show>public</show> -->
-				</configuration>
-			</plugin>
-
 			<plugin>
 				<groupId>org.codehaus.mojo</groupId>
 				<artifactId>findbugs-maven-plugin</artifactId>
@@ -432,5 +351,4 @@
 		</profile>
 	</profiles>
 
-
 </project>