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.7.5</version> 10 </parent> 11 12 <artifactId>okhttp-ws</artifactId> 13 <name>OkHttp Web Sockets</name> 14 15 <dependencies> 16 <dependency> 17 <groupId>com.squareup.okhttp</groupId> 18 <artifactId>okhttp</artifactId> 19 <version>${project.version}</version> 20 </dependency> 21 </dependencies> 22 23 <build> 24 <plugins> 25 <plugin> 26 <groupId>org.apache.maven.plugins</groupId> 27 <artifactId>maven-javadoc-plugin</artifactId> 28 <configuration> 29 <excludePackageNames>com.squareup.okhttp.internal.*</excludePackageNames> 30 <links> 31 <link>http://square.github.io/okhttp/javadoc/</link> 32 </links> 33 </configuration> 34 </plugin> 35 </plugins> 36 </build> 37</project> 38