• 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-android-support</artifactId>
13  <name>OkHttp Android Platform Support</name>
14  <description>Classes to support the Android platform's use of OkHttp (not required for most developers).</description>
15
16  <dependencies>
17    <dependency>
18      <groupId>com.squareup.okhttp</groupId>
19      <artifactId>okhttp-testing-support</artifactId>
20      <version>${project.version}</version>
21      <scope>test</scope>
22    </dependency>
23    <dependency>
24      <groupId>com.squareup.okhttp</groupId>
25      <artifactId>okhttp-urlconnection</artifactId>
26      <version>${project.version}</version>
27    </dependency>
28
29    <dependency>
30      <groupId>junit</groupId>
31      <artifactId>junit</artifactId>
32      <scope>test</scope>
33    </dependency>
34    <dependency>
35      <groupId>com.squareup.okhttp</groupId>
36      <artifactId>mockwebserver</artifactId>
37      <version>${project.version}</version>
38      <scope>test</scope>
39    </dependency>
40  </dependencies>
41
42  <build>
43    <plugins>
44      <plugin>
45        <groupId>org.apache.maven.plugins</groupId>
46        <artifactId>maven-javadoc-plugin</artifactId>
47        <configuration>
48          <excludePackageNames>com.squareup.okhttp.internal.*</excludePackageNames>
49          <links>
50            <link>http://square.github.io/okhttp/javadoc/</link>
51          </links>
52        </configuration>
53      </plugin>
54    </plugins>
55  </build>
56</project>
57