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.0.0-SNAPSHOT</version> 10 </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> 22 <groupId>com.squareup.okhttp</groupId> 23 <artifactId>mockwebserver</artifactId> 24 <version>${project.version}</version> 25 <scope>test</scope> 26 </dependency> 27 <dependency> 28 <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> 38 </dependencies> 39 </project> 40