users@jersey.java.net

jersey-spring's pom.xml has servlet-api listed as compile, should be provided

From: Chris Wilkes <cwilkes_at_ladro.com>
Date: Mon, 23 Jun 2008 19:28:42 -0700

Can the pom.xml for jersey-spring be updated to this:

        <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
             <version>2.5</version>
             <scope>provided</scope>
         </dependency>

(the normal jersey pom.xml is correct). "compile" means to include it
when packaging -- it ends up going into the war file.

Is this the best forum for posts like this?

Chris