Home | History | Annotate | Download | only in spring
      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-spring</artifactId>
     13 
     14   <name>Google Guice - Extensions - Spring</name>
     15 
     16   <dependencies>
     17     <dependency>
     18       <groupId>org.springframework</groupId>
     19       <artifactId>spring-beans</artifactId>
     20       <version>3.0.5.RELEASE</version>
     21       <scope>provided</scope>
     22     </dependency>
     23   </dependencies>
     24 
     25   <build>
     26     <plugins>
     27       <plugin>
     28         <artifactId>maven-jar-plugin</artifactId>
     29         <configuration>
     30           <archive>
     31             <manifestEntries>
     32               <Automatic-Module-Name>com.google.guice.extensions.spring</Automatic-Module-Name>
     33             </manifestEntries>
     34           </archive>
     35         </configuration>
     36       </plugin>
     37     </plugins>
     38   </build>
     39 </project>
     40