You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@abdera.apache.org by Ugo Cei <u....@sourcesense.com> on 2006/09/09 16:08:25 UTC

Missing dependency in security

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/



Re: Missing dependency in security

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On 9/9/06, Ugo Cei <u....@sourcesense.com> wrote:
> 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,

In case you weren't watching the commits list, James committed this change.

Thanks for the patch!

-garrett