• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?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>
9    <version>2.4.0-SNAPSHOT</version>
10  </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>
26      <groupId>com.squareup.okhttp</groupId>
27      <artifactId>okhttp-testing-support</artifactId>
28      <version>${project.version}</version>
29      <scope>test</scope>
30    </dependency>
31    <dependency>
32      <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>
63