• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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-tests</artifactId>
11  <name>Guava Unit Tests</name>
12  <description>
13    The unit tests for the Guava libraries - separated into a
14    separate artifact to allow for the testlibs to depend on guava
15    itself.
16  </description>
17  <dependencies>
18    <dependency>
19      <groupId>${project.groupId}</groupId>
20      <artifactId>guava-testlib</artifactId>
21      <version>${project.version}</version>
22      <scope>test</scope>
23    </dependency>
24    <dependency>
25      <groupId>junit</groupId>
26      <artifactId>junit</artifactId>
27      <version>4.8.2</version>
28      <scope>test</scope>
29    </dependency>
30    <dependency>
31      <groupId>org.easymock</groupId>
32      <artifactId>easymock</artifactId>
33      <version>3.0</version>
34      <scope>test</scope>
35    </dependency>
36    <dependency>
37      <groupId>org.junit.contrib</groupId>
38      <artifactId>truth</artifactId>
39      <version>0.5.0-beta1</version>
40      <scope>system</scope>
41      <systemPath>${basedir}/lib/libtruth.jar</systemPath>
42    </dependency>
43  </dependencies>
44  <repositories>
45    <repository>
46      <releases><enabled>true</enabled></releases>
47      <snapshots><enabled>false</enabled></snapshots>
48      <id>truth-github</id>
49      <name>Truth Github Repository</name>
50      <url>https://raw.github.com/truth0/repo/master</url>
51    </repository>
52  </repositories>
53  <build>
54    <plugins>
55      <plugin>
56        <groupId>org.apache.maven.plugins</groupId>
57        <artifactId>maven-compiler-plugin</artifactId>
58        <version>2.3.2</version>
59        <configuration>
60          <source>1.5</source>
61          <target>1.5</target>
62        </configuration>
63      </plugin>
64    </plugins>
65    <testResources>
66      <testResource>
67        <directory>${basedir}/test</directory>
68        <excludes>
69          <exclude>**/*.java</exclude>
70        </excludes>
71      </testResource>
72    </testResources>
73    <testSourceDirectory>test</testSourceDirectory>
74  </build>
75</project>
76