Base-Tag mit dem Context-Path als HREF eingefügt
[website] / pom.xml
diff --git a/pom.xml b/pom.xml
index b18c330..3eaaa8f 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 
     <!-- Zeichensatz -->
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+
+    <!-- Verwendete Versionen -->
+    <slf4j.version>1.5.8</slf4j.version>
+    <tiles.version>3.0.1</tiles.version>
+
   </properties>
 
 
   <dependencies>
+
+    <!-- Tiles -->
+    <dependency>
+      <groupId>org.apache.tiles</groupId>
+      <artifactId>tiles-core</artifactId>
+      <version>${tiles.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tiles</groupId>
+      <artifactId>tiles-jsp</artifactId>
+      <version>${tiles.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <!-- Logging -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>${slf4j.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+
   </dependencies>