blob: 3603a842da362bb4c48a2aa5d72ae1e4d43057ed [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>
Neil Fullera2cab722015-04-13 13:06:22 +01009 <version>2.4.0-SNAPSHOT</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>
Neil Fullere78f1172015-01-20 09:39:41 +000039 <optional>true</optional>
Narayan Kamath166772b2013-11-04 16:04:55 +000040 </dependency>
41 </dependencies>
42
43 <build>
Narayan Kamath166772b2013-11-04 16:04:55 +000044 <plugins>
45 <plugin>
Neil Fuller3c938a32014-02-19 09:40:26 +000046 <groupId>org.apache.maven.plugins</groupId>
Neil Fullere78f1172015-01-20 09:39:41 +000047 <artifactId>maven-javadoc-plugin</artifactId>
48 <configuration>
49 <links>
50 <link>http://square.github.io/okhttp/javadoc/</link>
51 <link>http://square.github.io/okio/</link>
52 </links>
53 </configuration>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
Neil Fuller3c938a32014-02-19 09:40:26 +000057 <artifactId>maven-assembly-plugin</artifactId>
Narayan Kamath166772b2013-11-04 16:04:55 +000058 <configuration>
Neil Fuller3c938a32014-02-19 09:40:26 +000059 <descriptorRefs>
60 <descriptorRef>jar-with-dependencies</descriptorRef>
61 </descriptorRefs>
Narayan Kamath166772b2013-11-04 16:04:55 +000062 </configuration>
Neil Fuller3c938a32014-02-19 09:40:26 +000063 <executions>
64 <execution>
65 <phase>package</phase>
66 <goals>
67 <goal>single</goal>
68 </goals>
69 </execution>
70 </executions>
Narayan Kamath166772b2013-11-04 16:04:55 +000071 </plugin>
72 </plugins>
73 </build>
74</project>