blob: 5cd118711a899e1fe273df4c73110260c3e0f732 [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 Fuller71b9f472015-09-16 17:39:32 +01009 <version>2.6.0-SNAPSHOT</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>
Narayan Kamath166772b2013-11-04 16:04:55 +000020 </dependencies>
21
22 <build>
23 <plugins>
24 <plugin>
Neil Fullere78f1172015-01-20 09:39:41 +000025 <groupId>org.codehaus.mojo</groupId>
26 <artifactId>templating-maven-plugin</artifactId>
27 <version>1.0-alpha-3</version>
28 <executions>
29 <execution>
30 <goals>
31 <goal>filter-sources</goal>
32 </goals>
33 </execution>
34 </executions>
35 </plugin>
36 <plugin>
Narayan Kamath166772b2013-11-04 16:04:55 +000037 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-javadoc-plugin</artifactId>
39 <configuration>
40 <excludePackageNames>com.squareup.okhttp.internal:com.squareup.okhttp.internal.*</excludePackageNames>
Neil Fullere78f1172015-01-20 09:39:41 +000041 <links>
42 <link>http://square.github.io/okio/</link>
43 </links>
Narayan Kamath166772b2013-11-04 16:04:55 +000044 </configuration>
45 </plugin>
Narayan Kamath166772b2013-11-04 16:04:55 +000046 </plugins>
47 </build>
48</project>