blob: 4da1a4ea89d957bc632f08253aaefffa899b3940 [file] [log] [blame]
Narayan Kamath166772b2013-11-04 16:04:55 +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>
Tobias Thierer6c251e22016-06-24 19:04:17 +01009 <version>2.7.5</version>
Narayan Kamath166772b2013-11-04 16:04:55 +000010 </parent>
11
12 <artifactId>okhttp-apache</artifactId>
13 <name>OkHttp Apache HttpClient</name>
14
15 <dependencies>
16 <dependency>
17 <groupId>com.squareup.okhttp</groupId>
18 <artifactId>okhttp</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
Neil Fuller7aeaaef2015-05-07 13:14:41 +010022 <groupId>com.squareup.okhttp</groupId>
23 <artifactId>okhttp-testing-support</artifactId>
24 <version>${project.version}</version>
25 <scope>test</scope>
26 </dependency>
27 <dependency>
Narayan Kamath166772b2013-11-04 16:04:55 +000028 <groupId>org.apache.httpcomponents</groupId>
29 <artifactId>httpclient</artifactId>
30 <scope>provided</scope>
31 </dependency>
32
33 <dependency>
34 <groupId>junit</groupId>
35 <artifactId>junit</artifactId>
36 <scope>test</scope>
37 </dependency>
Neil Fullere78f1172015-01-20 09:39:41 +000038 <dependency>
39 <groupId>com.squareup.okhttp</groupId>
40 <artifactId>mockwebserver</artifactId>
41 <version>${project.version}</version>
42 <scope>test</scope>
43 </dependency>
Narayan Kamath166772b2013-11-04 16:04:55 +000044 </dependencies>
Neil Fullere78f1172015-01-20 09:39:41 +000045
46 <build>
47 <plugins>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-javadoc-plugin</artifactId>
51 <configuration>
52 <links>
53 <link>http://square.github.io/okhttp/javadoc/</link>
54 <link>http://hc.apache.org/httpcomponents-client-4.3.x/httpclient/apidocs/</link>
55 <link>https://hc.apache.org/httpcomponents-core-4.3.x/httpcore/apidocs/</link>
56 </links>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
Narayan Kamath166772b2013-11-04 16:04:55 +000061</project>