SOLR-3159: pom should only depend on the servlet API, not container specific version

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1301300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2012-03-16 00:55:43 +00:00
parent 9a15b3f449
commit e24e7856f0
2 changed files with 6 additions and 6 deletions

View File

@ -339,10 +339,10 @@
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.orbit</groupId>
<artifactId>javax.servlet</artifactId>
<version>3.0.0.v201112011016</version>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.spatial4j</groupId>

View File

@ -198,8 +198,8 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.orbit</groupId>
<artifactId>javax.servlet</artifactId>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<!-- compile scope; solr-core is a jar not a war -->
</dependency>
<dependency>