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.6.0-SNAPSHOT</version> 10 </parent> 11 12 <artifactId>okhttp</artifactId> 13 <name>OkHttp</name> 14 15 <dependencies> 16 <dependency> 17 <groupId>com.squareup.okio</groupId> 18 <artifactId>okio</artifactId> 19 </dependency> 20 </dependencies> 21 22 <build> 23 <plugins> 24 <plugin> 25 <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> 37 <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> 41 <links> 42 <link>http://square.github.io/okio/</link> 43 </links> 44 </configuration> 45 </plugin> 46 </plugins> 47 </build> 48 </project> 49