SslHandlerFactory.createSslHandler() is a default method
[netconf.git] / protocol / netconf-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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/xsd/maven-4.0.0.xsd">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>6.0.0-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-client</artifactId>
20   <name>${project.artifactId}</name>
21   <packaging>bundle</packaging>
22
23   <dependencies>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>com.guicedee.services</groupId>
30       <artifactId>javax.inject</artifactId>
31       <optional>true</optional>
32     </dependency>
33     <dependency>
34       <groupId>io.netty</groupId>
35       <artifactId>netty-codec</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>io.netty</groupId>
39       <artifactId>netty-common</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>io.netty</groupId>
43       <artifactId>netty-handler</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>io.netty</groupId>
47       <artifactId>netty-transport</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.checkerframework</groupId>
51       <artifactId>checker-qual</artifactId>
52       <scope>provided</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
56       <artifactId>rfc6991-ietf-inet-types</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.netconf</groupId>
60       <artifactId>netconf-api</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.netconf</groupId>
64       <artifactId>netconf-netty-util</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.netconf</groupId>
68       <artifactId>shaded-exificient</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.osgi</groupId>
72       <artifactId>org.osgi.service.component.annotations</artifactId>
73     </dependency>
74
75     <dependency>
76       <groupId>org.opendaylight.yangtools</groupId>
77       <artifactId>mockito-configuration</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.netconf</groupId>
81       <artifactId>netconf-test-util</artifactId>
82     </dependency>
83   </dependencies>
84
85   <build>
86     <plugins>
87       <plugin>
88         <artifactId>maven-jar-plugin</artifactId>
89         <executions>
90           <execution>
91             <goals>
92               <goal>test-jar</goal>
93             </goals>
94           </execution>
95         </executions>
96       </plugin>
97       <plugin>
98         <artifactId>maven-source-plugin</artifactId>
99         <executions>
100           <execution>
101             <goals>
102               <goal>test-jar-no-fork</goal>
103             </goals>
104           </execution>
105         </executions>
106       </plugin>
107     </plugins>
108   </build>
109
110 </project>