Home | History | Annotate | Download | only in okhttp-ws-tests
      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-tests</artifactId>
     13   <name>OkHttp Web Socket Tests</name>
     14 
     15   <dependencies>
     16     <dependency>
     17       <groupId>com.squareup.okhttp</groupId>
     18       <artifactId>okhttp-ws</artifactId>
     19       <version>${project.version}</version>
     20     </dependency>
     21 
     22     <dependency>
     23       <groupId>com.squareup.okhttp</groupId>
     24       <artifactId>okhttp-testing-support</artifactId>
     25       <version>${project.version}</version>
     26       <scope>test</scope>
     27     </dependency>
     28 
     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>
     44       <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>
     66       <!-- 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>
     77