blob: 7681ad14da137abc015cbf9a1be0acee282490ca [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>mockwebserver</artifactId>
13 <name>MockWebServer</name>
14
15 <dependencies>
16 <dependency>
17 <groupId>com.squareup.okhttp</groupId>
Neil Fuller3c938a32014-02-19 09:40:26 +000018 <artifactId>okhttp</artifactId>
Narayan Kamath166772b2013-11-04 16:04:55 +000019 <version>${project.version}</version>
20 </dependency>
21 <dependency>
Neil Fullera2cab722015-04-13 13:06:22 +010022 <groupId>com.squareup.okhttp</groupId>
Neil Fuller7aeaaef2015-05-07 13:14:41 +010023 <artifactId>okhttp-testing-support</artifactId>
24 <version>${project.version}</version>
25 <scope>test</scope>
26 </dependency>
27 <dependency>
28 <groupId>com.squareup.okhttp</groupId>
Neil Fullera2cab722015-04-13 13:06:22 +010029 <artifactId>okhttp-ws</artifactId>
30 <version>${project.version}</version>
31 </dependency>
32 <dependency>
Narayan Kamath166772b2013-11-04 16:04:55 +000033 <groupId>org.bouncycastle</groupId>
34 <artifactId>bcprov-jdk15on</artifactId>
35 </dependency>
36 <dependency>
Narayan Kamath166772b2013-11-04 16:04:55 +000037 <groupId>junit</groupId>
38 <artifactId>junit</artifactId>
Narayan Kamath166772b2013-11-04 16:04:55 +000039 </dependency>
40 </dependencies>
41
42 <build>
Narayan Kamath166772b2013-11-04 16:04:55 +000043 <plugins>
44 <plugin>
Neil Fuller3c938a32014-02-19 09:40:26 +000045 <groupId>org.apache.maven.plugins</groupId>
Neil Fullere78f1172015-01-20 09:39:41 +000046 <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>
Neil Fuller3c938a32014-02-19 09:40:26 +000056 <artifactId>maven-assembly-plugin</artifactId>
Narayan Kamath166772b2013-11-04 16:04:55 +000057 <configuration>
Neil Fuller3c938a32014-02-19 09:40:26 +000058 <descriptorRefs>
59 <descriptorRef>jar-with-dependencies</descriptorRef>
60 </descriptorRefs>
Narayan Kamath166772b2013-11-04 16:04:55 +000061 </configuration>
Neil Fuller3c938a32014-02-19 09:40:26 +000062 <executions>
63 <execution>
64 <phase>package</phase>
65 <goals>
66 <goal>single</goal>
67 </goals>
68 </execution>
69 </executions>
Narayan Kamath166772b2013-11-04 16:04:55 +000070 </plugin>
71 </plugins>
72 </build>
73</project>