blob: ea1e3031f95447ad61a0bdf025f6cc51abb29e50 [file] [log] [blame]
Bjorn Bringert1d580d02012-05-07 16:50:46 +01001<?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>
Paul Duffin3ecfa412015-05-29 15:33:20 +01007 <artifactId>guava-parent</artifactId>
8 <version>18.0</version>
Bjorn Bringert1d580d02012-05-07 16:50:46 +01009 </parent>
Paul Duffin3ecfa412015-05-29 15:33:20 +010010 <artifactId>guava-tests</artifactId>
11 <name>Guava Unit Tests</name>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010012 <description>
Paul Duffin7dd25272015-01-22 16:04:43 +000013 The unit tests for the Guava libraries - separated into a
Bjorn Bringert1d580d02012-05-07 16:50:46 +010014 separate artifact to allow for the testlibs to depend on guava
15 itself.
16 </description>
17 <dependencies>
18 <dependency>
Paul Duffin7dd25272015-01-22 16:04:43 +000019 <groupId>${project.groupId}</groupId>
Paul Duffin3ecfa412015-05-29 15:33:20 +010020 <artifactId>guava-testlib</artifactId>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010021 <version>${project.version}</version>
22 <scope>test</scope>
23 </dependency>
24 <dependency>
Paul Duffin0888a092015-01-23 14:38:46 +000025 <groupId>com.google.code.findbugs</groupId>
26 <artifactId>jsr305</artifactId>
27 </dependency>
28 <dependency>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010029 <groupId>junit</groupId>
30 <artifactId>junit</artifactId>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010031 </dependency>
32 <dependency>
33 <groupId>org.easymock</groupId>
34 <artifactId>easymock</artifactId>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010035 </dependency>
36 <dependency>
Paul Duffin7dd25272015-01-22 16:04:43 +000037 <groupId>org.mockito</groupId>
38 <artifactId>mockito-core</artifactId>
Paul Duffin7dd25272015-01-22 16:04:43 +000039 </dependency>
40 <dependency>
Paul Duffin3ecfa412015-05-29 15:33:20 +010041 <groupId>com.google.truth</groupId>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010042 <artifactId>truth</artifactId>
Paul Duffin7dd25272015-01-22 16:04:43 +000043 </dependency>
44 <dependency>
45 <groupId>com.google.caliper</groupId>
46 <artifactId>caliper</artifactId>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010047 </dependency>
48 </dependencies>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010049 <build>
50 <plugins>
51 <plugin>
Bjorn Bringert1d580d02012-05-07 16:50:46 +010052 <artifactId>maven-compiler-plugin</artifactId>
Paul Duffin0888a092015-01-23 14:38:46 +000053 </plugin>
54 <plugin>
Paul Duffin7dd25272015-01-22 16:04:43 +000055 <artifactId>maven-source-plugin</artifactId>
Paul Duffin7dd25272015-01-22 16:04:43 +000056 <executions>
57 <execution>
58 <id>attach-test-sources</id>
59 <phase>post-integration-test</phase>
60 <goals><goal>test-jar</goal></goals>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
Paul Duffin0888a092015-01-23 14:38:46 +000065 <artifactId>maven-surefire-plugin</artifactId>
66 </plugin>
67 <plugin>
68 <artifactId>maven-jar-plugin</artifactId>
69 <version>2.3.1</version>
70 <executions>
71 <execution>
72 <goals><goal>test-jar</goal></goals>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
77 <groupId>org.codehaus.mojo</groupId>
78 <artifactId>animal-sniffer-maven-plugin</artifactId>
79 </plugin>
80 <!-- TODO(cpovirk): reenable after a matching Caliper snapshot is pushed to Maven Central
81 <plugin>
Paul Duffin7dd25272015-01-22 16:04:43 +000082 <groupId>org.codehaus.mojo</groupId>
83 <artifactId>build-helper-maven-plugin</artifactId>
84 <version>1.7</version>
85 <executions>
86 <execution>
87 <id>add-benchmark-sources</id>
88 <phase>generate-test-sources</phase>
89 <goals><goal>add-test-source</goal></goals>
90 <configuration>
91 <sources>
92 <source>benchmark</source>
93 </sources>
94 </configuration>
95 </execution>
96 </executions>
97 </plugin>
Paul Duffin0888a092015-01-23 14:38:46 +000098 -->
Bjorn Bringert1d580d02012-05-07 16:50:46 +010099 </plugins>
Bjorn Bringert1d580d02012-05-07 16:50:46 +0100100 </build>
101</project>