Home | History | Annotate | Download | only in testlib
      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-testlib</artifactId>
     13 
     14   <name>Google Guice - Extensions - TestLib</name>
     15 
     16   <build>
     17     <plugins>
     18       <plugin>
     19         <artifactId>maven-surefire-plugin</artifactId>
     20         <configuration>
     21           <excludes>
     22             <exclude>**/TestScope*</exclude>
     23           </excludes>
     24         </configuration>
     25       </plugin>
     26       <plugin>
     27         <artifactId>maven-jar-plugin</artifactId>
     28         <configuration>
     29           <archive>
     30             <manifestEntries>
     31               <Automatic-Module-Name>com.google.guice.extensions.testlib</Automatic-Module-Name>
     32             </manifestEntries>
     33           </archive>
     34         </configuration>
     35       </plugin>
     36     </plugins>
     37   </build>
     38 
     39   <dependencies>
     40     <dependency>
     41       <groupId>com.google.inject.extensions</groupId>
     42       <artifactId>guice-throwingproviders</artifactId>
     43       <version>${project.version}</version>
     44     </dependency>
     45     <dependency>
     46       <groupId>com.google.truth</groupId>
     47       <artifactId>truth</artifactId>
     48       <scope>compile</scope>
     49     </dependency>
     50     <dependency>
     51       <groupId>com.google.code.findbugs</groupId>
     52       <artifactId>jsr305</artifactId>
     53     </dependency>
     54   </dependencies>
     55 </project>
     56