• 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>mockwebserver</artifactId>
13  <name>MockWebServer</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>okhttp-testing-support</artifactId>
24      <version>${project.version}</version>
25      <scope>test</scope>
26    </dependency>
27    <dependency>
28      <groupId>com.squareup.okhttp</groupId>
29      <artifactId>okhttp-ws</artifactId>
30      <version>${project.version}</version>
31    </dependency>
32    <dependency>
33      <groupId>org.bouncycastle</groupId>
34      <artifactId>bcprov-jdk15on</artifactId>
35    </dependency>
36    <dependency>
37      <groupId>junit</groupId>
38      <artifactId>junit</artifactId>
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          <links>
49            <link>http://square.github.io/okhttp/javadoc/</link>
50            <link>http://square.github.io/okio/</link>
51          </links>
52        </configuration>
53      </plugin>
54      <plugin>
55        <groupId>org.apache.maven.plugins</groupId>
56        <artifactId>maven-assembly-plugin</artifactId>
57        <configuration>
58          <descriptorRefs>
59            <descriptorRef>jar-with-dependencies</descriptorRef>
60          </descriptorRefs>
61        </configuration>
62        <executions>
63          <execution>
64            <phase>package</phase>
65            <goals>
66              <goal>single</goal>
67            </goals>
68          </execution>
69        </executions>
70      </plugin>
71    </plugins>
72  </build>
73</project>
74