blob: 18023040a218e2ffe8c3b5ae51bdd8f26cc196a7 [file] [log] [blame]
Neil Fullera2cab722015-04-13 13:06:22 +01001<?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>
Neil Fullera2cab722015-04-13 13:06:22 +010010 </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>
Tobias Thierer6c251e22016-06-24 19:04:17 +010018 <artifactId>okhttp-ws</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21
22 <dependency>
23 <groupId>com.squareup.okhttp</groupId>
Neil Fuller7aeaaef2015-05-07 13:14:41 +010024 <artifactId>okhttp-testing-support</artifactId>
25 <version>${project.version}</version>
26 <scope>test</scope>
27 </dependency>
Neil Fullera2cab722015-04-13 13:06:22 +010028
29 <dependency>
30 <groupId>junit</groupId>
31 <artifactId>junit</artifactId>
32 <scope>test</scope>
33 </dependency>
34 <dependency>
35 <groupId>com.squareup.okhttp</groupId>
36 <artifactId>mockwebserver</artifactId>
37 <version>${project.version}</version>
38 <scope>test</scope>
39 </dependency>
40 </dependencies>
41
42 <build>
43 <plugins>
Tobias Thierer6c251e22016-06-24 19:04:17 +010044 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-assembly-plugin</artifactId>
47 <configuration>
48 <descriptorRefs>
49 <descriptorRef>jar-with-dependencies</descriptorRef>
50 </descriptorRefs>
51 <archive>
52 <manifest>
53 <mainClass>com.squareup.okhttp.ws.AutobahnTester</mainClass>
54 </manifest>
55 </archive>
56 </configuration>
57 <executions>
58 <execution>
59 <phase>package</phase>
60 <goals>
61 <goal>single</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
Neil Fullera2cab722015-04-13 13:06:22 +010066 <!-- Do not deploy this as an artifact to Maven central. -->
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-deploy-plugin</artifactId>
70 <configuration>
71 <skip>true</skip>
72 </configuration>
73 </plugin>
74 </plugins>
75 </build>
76</project>