Home | History | Annotate | Download | only in servlet
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      3 
      4   <modelVersion>4.0.0</modelVersion>
      5 
      6   <parent>
      7     <groupId>com.google.inject.extensions</groupId>
      8     <artifactId>extensions-parent</artifactId>
      9     <version>4.2.0</version>
     10   </parent>
     11 
     12   <artifactId>guice-servlet</artifactId>
     13 
     14   <name>Google Guice - Extensions - Servlet</name>
     15 
     16   <dependencies>
     17     <dependency>
     18       <groupId>javax.servlet</groupId>
     19       <artifactId>servlet-api</artifactId>
     20       <version>2.5</version>
     21       <scope>provided</scope>
     22     </dependency>
     23     <dependency>
     24       <groupId>org.easymock</groupId>
     25       <artifactId>easymock</artifactId>
     26       <version>3.0</version>
     27       <scope>test</scope>
     28     </dependency>
     29   </dependencies>
     30 
     31   <build>
     32     <plugins>
     33       <plugin>
     34         <artifactId>maven-jar-plugin</artifactId>
     35         <configuration>
     36           <archive>
     37             <manifestEntries>
     38               <Automatic-Module-Name>com.google.guice.extensions.servlet</Automatic-Module-Name>
     39             </manifestEntries>
     40           </archive>
     41         </configuration>
     42       </plugin>
     43     </plugins>
     44   </build>
     45 </project>
     46