blob: 4d299fefdc745bfbd1ea08de4bde463a75064b22 [file] [log] [blame]
Neil Fullere78f1172015-01-20 09:39:41 +00001<?xml version="1.0" encoding="UTF-8"?>
2
3<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">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>com.squareup.okhttp</groupId>
8 <artifactId>parent</artifactId>
Neil Fuller7aeaaef2015-05-07 13:14:41 +01009 <version>2.4.0-SNAPSHOT</version>
Neil Fullere78f1172015-01-20 09:39:41 +000010 </parent>
11
12 <artifactId>okhttp-hpacktests</artifactId>
13 <name>OkHttp HPACK Tests</name>
14
15 <dependencies>
16 <dependency>
17 <groupId>com.squareup.okio</groupId>
18 <artifactId>okio</artifactId>
19 </dependency>
20 <dependency>
21 <groupId>com.squareup.okhttp</groupId>
22 <artifactId>okhttp</artifactId>
23 <version>${project.version}</version>
24 </dependency>
25 <dependency>
Neil Fuller7aeaaef2015-05-07 13:14:41 +010026 <groupId>com.squareup.okhttp</groupId>
27 <artifactId>okhttp-testing-support</artifactId>
28 <version>${project.version}</version>
29 <scope>test</scope>
30 </dependency>
31 <dependency>
Neil Fullere78f1172015-01-20 09:39:41 +000032 <groupId>junit</groupId>
33 <artifactId>junit</artifactId>
34 <scope>test</scope>
35 </dependency>
36 <dependency>
37 <groupId>com.squareup.okhttp</groupId>
38 <artifactId>mockwebserver</artifactId>
39 <version>${project.version}</version>
40 <scope>test</scope>
41 </dependency>
42 <!-- Gson: Java to Json conversion -->
43 <dependency>
44 <groupId>com.google.code.gson</groupId>
45 <artifactId>gson</artifactId>
46 <scope>compile</scope>
47 </dependency>
48 </dependencies>
49
50 <build>
51 <plugins>
52 <!-- Do not deploy this as an artifact to Maven central. -->
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-deploy-plugin</artifactId>
56 <configuration>
57 <skip>true</skip>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>