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</artifactId>
13  <name>OkHttp</name>
14
15  <dependencies>
16    <dependency>
17      <groupId>com.squareup.okio</groupId>
18      <artifactId>okio</artifactId>
19    </dependency>
20    <dependency>
21      <groupId>com.google.android</groupId>
22      <artifactId>android</artifactId>
23      <scope>provided</scope>
24    </dependency>
25  </dependencies>
26
27  <build>
28    <plugins>
29      <plugin>
30        <groupId>org.codehaus.mojo</groupId>
31        <artifactId>templating-maven-plugin</artifactId>
32        <version>1.0-alpha-3</version>
33        <executions>
34          <execution>
35            <goals>
36              <goal>filter-sources</goal>
37            </goals>
38          </execution>
39        </executions>
40      </plugin>
41      <plugin>
42        <groupId>org.apache.maven.plugins</groupId>
43        <artifactId>maven-javadoc-plugin</artifactId>
44        <configuration>
45          <excludePackageNames>com.squareup.okhttp.internal:com.squareup.okhttp.internal.*</excludePackageNames>
46          <links>
47            <link>http://square.github.io/okio/</link>
48          </links>
49        </configuration>
50      </plugin>
51    </plugins>
52  </build>
53</project>
54