a936294230282050d53f08a5a91caa01de9757ef
[yangtools.git] / websocket / websocket-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.odlparent</groupId>
16         <artifactId>odlparent</artifactId>
17         <version>1.8.4-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20
21     <groupId>org.opendaylight.yangtools</groupId>
22     <artifactId>websocket-client</artifactId>
23     <version>1.1.4-SNAPSHOT</version>
24     <packaging>jar</packaging>
25
26     <dependencies>
27         <dependency>
28             <groupId>com.google.guava</groupId>
29             <artifactId>guava</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>io.netty</groupId>
33             <artifactId>netty-codec-http</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.slf4j</groupId>
37             <artifactId>slf4j-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>junit</groupId>
41             <artifactId>junit</artifactId>
42         </dependency>
43     </dependencies>
44
45     <build>
46         <plugins>
47             <plugin>
48                 <groupId>org.apache.maven.plugins</groupId>
49                 <artifactId>maven-checkstyle-plugin</artifactId>
50                 <executions>
51                     <execution>
52                         <id>check-license</id>
53                         <configuration>
54                             <excludes>
55                                 <!-- Skip Apache Licensed files -->
56                                 org/opendaylight/yangtools/websocket/server/WebSocketServerHandler.java,
57                                 org/opendaylight/yangtools/websocket/server/WebSocketServer.java,
58                                 org/opendaylight/yangtools/websocket/server/WebSocketServerInitializer.java,
59                             </excludes>
60                         </configuration>
61                     </execution>
62                 </executions>
63             </plugin>
64         </plugins>
65     </build>
66 </project>