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.4.0-SNAPSHOT</version> 10 </parent> 11 12 <artifactId>okhttp-ws-tests</artifactId> 13 <name>OkHttp Web Socket Tests</name> 14 15 <dependencies> 16 <dependency> 17 <groupId>com.squareup.okhttp</groupId> 18 <artifactId>okhttp-testing-support</artifactId> 19 <version>${project.version}</version> 20 <scope>test</scope> 21 </dependency> 22 <dependency> 23 <groupId>com.squareup.okhttp</groupId> 24 <artifactId>okhttp-ws</artifactId> 25 <version>${project.version}</version> 26 </dependency> 27 28 <dependency> 29 <groupId>junit</groupId> 30 <artifactId>junit</artifactId> 31 <scope>test</scope> 32 </dependency> 33 <dependency> 34 <groupId>com.squareup.okhttp</groupId> 35 <artifactId>mockwebserver</artifactId> 36 <version>${project.version}</version> 37 <scope>test</scope> 38 </dependency> 39 </dependencies> 40 41 <build> 42 <plugins> 43 <!-- Do not deploy this as an artifact to Maven central. --> 44 <plugin> 45 <groupId>org.apache.maven.plugins</groupId> 46 <artifactId>maven-deploy-plugin</artifactId> 47 <configuration> 48 <skip>true</skip> 49 </configuration> 50 </plugin> 51 </plugins> 52 </build> 53 </project> 54