• 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.7.5</version>
10  </parent>
11
12  <artifactId>okhttp-tests</artifactId>
13  <name>OkHttp 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>com.squareup.okhttp</groupId>
33      <artifactId>okhttp-urlconnection</artifactId>
34      <version>${project.version}</version>
35    </dependency>
36
37    <dependency>
38      <groupId>junit</groupId>
39      <artifactId>junit</artifactId>
40      <scope>test</scope>
41    </dependency>
42    <dependency>
43      <groupId>com.squareup.okhttp</groupId>
44      <artifactId>mockwebserver</artifactId>
45      <version>${project.version}</version>
46      <scope>test</scope>
47    </dependency>
48    <dependency>
49      <groupId>com.google.code.gson</groupId>
50      <artifactId>gson</artifactId>
51      <scope>test</scope>
52    </dependency>
53  </dependencies>
54
55  <build>
56    <plugins>
57      <!-- Do not deploy this as an artifact to Maven central. -->
58      <plugin>
59        <groupId>org.apache.maven.plugins</groupId>
60        <artifactId>maven-deploy-plugin</artifactId>
61        <configuration>
62          <skip>true</skip>
63        </configuration>
64      </plugin>
65    </plugins>
66  </build>
67</project>
68