From b779cf9ce10847a6e76815da4fe0ba6cbdc02080 Mon Sep 17 00:00:00 2001
From: Nelson Tavares de Sousa <ntd@informatik.uni-kiel.de>
Date: Tue, 16 Dec 2014 11:14:45 +0100
Subject: [PATCH] fixed pom.xml

---
 pom.xml | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 56 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 30373a83..b9ceec7b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,16 @@
 		<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>
@@ -55,8 +64,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>
@@ -101,7 +116,12 @@
 
 	<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>
@@ -194,7 +214,9 @@
 				<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>
@@ -290,6 +312,23 @@
 
 	<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>
@@ -303,6 +342,19 @@
 				</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>
@@ -375,4 +427,5 @@
 		</profile>
 	</profiles>
 
-</project>
+
+</project>
\ No newline at end of file
-- 
GitLab