Looks like the POM for the security module is missing a dependency on the Servlet API. Here's the fix:

Index: java/trunk/security/pom.xml
===================================================================
--- java/trunk/security/pom.xml (revision 441788)
+++ java/trunk/security/pom.xml (working copy)
@@ -68,5 +68,10 @@
       <groupId>xerces</groupId>
       <artifactId>xercesImpl</artifactId>
     </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+    </dependency>
   </dependencies>
</project>


        Have a nice day,

                Ugo


--
Ugo Cei
Blog: http://agylen.com/
Open Source Zone: http://oszone.org/
Evil or Not?: http://evilornot.info/
Company: http://www.sourcesense.com/


Reply via email to