• 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>1.1.2-SNAPSHOT</version>
10  </parent>
11
12  <artifactId>okhttp</artifactId>
13  <name>OkHttp</name>
14
15  <dependencies>
16    <dependency>
17      <groupId>org.mortbay.jetty.npn</groupId>
18      <artifactId>npn-boot</artifactId>
19      <optional>true</optional>
20    </dependency>
21
22    <dependency>
23      <groupId>junit</groupId>
24      <artifactId>junit</artifactId>
25      <scope>test</scope>
26    </dependency>
27    <dependency>
28      <groupId>org.bouncycastle</groupId>
29      <artifactId>bcprov-jdk15on</artifactId>
30      <scope>test</scope>
31    </dependency>
32    <dependency>
33      <groupId>com.google.mockwebserver</groupId>
34      <artifactId>mockwebserver</artifactId>
35      <scope>test</scope>
36    </dependency>
37  </dependencies>
38</project>
39