blob: cff86e43b5fd87ad66253a525d69de2d1413f86f [file] [log] [blame]
sberlin@gmail.com255af732010-08-01 19:49:16 +00001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>com.google.inject.extensions</groupId>
7 <artifactId>extensions-parent</artifactId>
8 <version>2.0</version>
9 </parent>
10 <artifactId>guice-servlet</artifactId>
11 <packaging>jar</packaging>
12 <name>Google Guice - Extensions: Servlet</name>
13 <description>Guice integration with servlets</description>
14 <!-- Note: this pom is for dependency management only. It will not build the project -->
15 <dependencies>
16 <dependency>
17 <groupId>com.google.inject</groupId>
18 <artifactId>guice</artifactId>
19 </dependency>
20 <dependency>
21 <groupId>javax.servlet</groupId>
22 <artifactId>servlet-api</artifactId>
23 </dependency>
24 </dependencies>
25</project>