From 62ba26e93d0328fe56e8d174ec13b0d0edf82a63 Mon Sep 17 00:00:00 2001
From: Nelson Tavares de Sousa <ntd@informatik.uni-kiel.de>
Date: Fri, 21 Nov 2014 16:02:05 +0100
Subject: [PATCH] removed changes plugin added site.xml for site generation
 first look at site creation #66

---
 pom.xml           | 33 +++++++++++++++++++--------------
 src/site/site.xml | 13 +++++++++++++
 2 files changed, 32 insertions(+), 14 deletions(-)
 create mode 100644 src/site/site.xml

diff --git a/pom.xml b/pom.xml
index 29ca4ea3..47b7de92 100644
--- a/pom.xml
+++ b/pom.xml
@@ -259,25 +259,30 @@
 					</execution>
 				</executions>
 			</plugin>
-
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-site-plugin</artifactId>
+				<version>3.3</version>
+				<dependencies>
+					
+					<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>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>changes-report</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-checkstyle-plugin</artifactId>
diff --git a/src/site/site.xml b/src/site/site.xml
new file mode 100644
index 00000000..e3410fc7
--- /dev/null
+++ b/src/site/site.xml
@@ -0,0 +1,13 @@
+<project>
+  <skin>
+    <groupId>lt.velykis.maven.skins</groupId>
+    <artifactId>reflow-maven-skin</artifactId>
+    <version>1.1.1</version>
+  </skin>
+  <body>
+    <breadcrumbs>
+    </breadcrumbs>
+    <menu ref="modules"/>
+    <menu ref="reports" inherit="bottom"/>
+  </body>
+</project>
\ No newline at end of file
-- 
GitLab