Added implementation of getQName for Identity classes
[yangtools.git] / websocket / websocket-client / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>org.opendaylight.controller</groupId>
5     <artifactId>websocket-client</artifactId>
6
7     <parent>
8         <groupId>org.opendaylight.yangtools</groupId>
9         <artifactId>websocket-parent</artifactId>
10         <version>1.0-SNAPSHOT</version>
11     </parent>
12
13     <packaging>jar</packaging>
14     <version>1.0-SNAPSHOT</version>
15     <name>websocket-client</name>
16
17     <dependencies>
18         <dependency>
19             <groupId>io.netty</groupId>
20             <artifactId>netty-handler</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>io.netty</groupId>
24             <artifactId>netty-transport</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>io.netty</groupId>
28             <artifactId>netty-all</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.slf4j</groupId>
32             <artifactId>slf4j-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>junit</groupId>
36             <artifactId>junit</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>websocket-server</artifactId>
41         </dependency>
42     </dependencies>
43 </project>