Home | History | Annotate | Download | only in service
      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.0-SNAPSHOT</version>
     10   </parent>
     11 
     12   <artifactId>guice-service</artifactId>
     13 
     14   <name>Google Guice - Extensions - Service</name>
     15 
     16   <build>
     17     <plugins>
     18       <plugin>
     19         <artifactId>maven-jar-plugin</artifactId>
     20         <configuration>
     21           <archive>
     22             <manifestEntries>
     23               <Automatic-Module-Name>com.google.guice.extensions.service</Automatic-Module-Name>
     24             </manifestEntries>
     25           </archive>
     26         </configuration>
     27       </plugin>
     28     </plugins>
     29   </build>
     30 </project>
     31