blob: 3254b30924774088b1cfde0b82ce4d063b141210 [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>okhttp</artifactId>
13 <name>OkHttp</name>
14
15 <dependencies>
16 <dependency>
Neil Fuller3c938a32014-02-19 09:40:26 +000017 <groupId>com.squareup.okio</groupId>
18 <artifactId>okio</artifactId>
Neil Fuller3c938a32014-02-19 09:40:26 +000019 </dependency>
Tobias Thierer6c251e22016-06-24 19:04:17 +010020 <dependency>
21 <groupId>com.google.android</groupId>
22 <artifactId>android</artifactId>
23 <scope>provided</scope>
24 </dependency>
Narayan Kamath166772b2013-11-04 16:04:55 +000025 </dependencies>
26
27 <build>
28 <plugins>
29 <plugin>
Neil Fullere78f1172015-01-20 09:39:41 +000030 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>templating-maven-plugin</artifactId>
32 <version>1.0-alpha-3</version>
33 <executions>
34 <execution>
35 <goals>
36 <goal>filter-sources</goal>
37 </goals>
38 </execution>
39 </executions>
40 </plugin>
41 <plugin>
Narayan Kamath166772b2013-11-04 16:04:55 +000042 <groupId>org.apache.maven.plugins</groupId>
43 <artifactId>maven-javadoc-plugin</artifactId>
44 <configuration>
45 <excludePackageNames>com.squareup.okhttp.internal:com.squareup.okhttp.internal.*</excludePackageNames>
Neil Fullere78f1172015-01-20 09:39:41 +000046 <links>
47 <link>http://square.github.io/okio/</link>
48 </links>
Narayan Kamath166772b2013-11-04 16:04:55 +000049 </configuration>
50 </plugin>
Narayan Kamath166772b2013-11-04 16:04:55 +000051 </plugins>
52 </build>
53</project>