Home | History | Annotate | Download | only in guava-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"
      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.guava</groupId>
      7     <artifactId>guava-parent</artifactId>
      8     <version>11.0.2</version>
      9   </parent>
     10   <artifactId>guava-testlib</artifactId>
     11   <name>Guava Testing Library</name>
     12   <description>
     13     Guava testlib is a set of java classes used for more convenient
     14     unit testing - particularly to assist the tests for Guava itself.
     15   </description>
     16   <dependencies>
     17     <dependency>
     18       <groupId>${project.groupId}</groupId>
     19       <artifactId>guava</artifactId>
     20       <version>${project.version}</version>
     21     </dependency>
     22     <dependency>
     23       <groupId>junit</groupId>
     24       <artifactId>junit</artifactId>
     25       <version>4.8.2</version>
     26     </dependency>
     27     <dependency>
     28       <groupId>com.google.gwt</groupId>
     29       <artifactId>gwt-dev</artifactId>
     30       <version>2.2.0</version>
     31       <scope>provided</scope>
     32     </dependency>
     33   </dependencies>
     34   <build>
     35     <plugins>
     36       <plugin>
     37         <groupId>org.apache.maven.plugins</groupId>
     38         <artifactId>maven-compiler-plugin</artifactId>
     39         <version>2.3.2</version>
     40         <configuration>
     41           <source>1.5</source>
     42           <target>1.5</target>
     43         </configuration>
     44       </plugin>
     45       <plugin>
     46         <groupId>org.apache.maven.plugins</groupId>
     47         <artifactId>maven-source-plugin</artifactId>
     48         <version>2.1.2</version>
     49         <executions>
     50           <execution>
     51             <id>attach-sources</id>
     52             <phase>verify</phase>
     53             <goals><goal>jar-no-fork</goal></goals>
     54           </execution>
     55         </executions>
     56       </plugin>
     57     </plugins>
     58     <sourceDirectory>src</sourceDirectory>
     59   </build>
     60 </project>
     61