From 0826af84bb2c1feb8ed915141cb7ba6ce303afc8 Mon Sep 17 00:00:00 2001
From: Dan Hutchinson <d.hutchinson4@googlemail.com>
Date: Fri, 12 Jun 2015 19:21:56 +0100
Subject: [PATCH] Example now works with tomcat7 plugin

---
 pom.xml | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index d7e5897..73114d6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,7 +31,8 @@
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>javax.servlet-api</artifactId>
-            <version>3.0.1</version>
+            <version>LATEST</version>
+            <scope>provided</scope>
         </dependency>
 
     </dependencies>
@@ -74,6 +75,14 @@
                     <scanIntervalSeconds>10</scanIntervalSeconds>
                 </configuration>
             </plugin>
+
+            <!-- Tomcat -->
+
+            <plugin>
+                <groupId>org.apache.tomcat.maven</groupId>
+                <artifactId>tomcat7-maven-plugin</artifactId>
+                <version>2.2</version>
+            </plugin>
         </plugins>
     </build>
 </project>
\ No newline at end of file