62498f79b5829ce717182a9a848f2966e31dbeef
[netconf.git] / protocol / netconf-server / 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>7.0.1-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <artifactId>netconf-server</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-transport</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.checkerframework</groupId>
47       <artifactId>checker-qual</artifactId>
48       <scope>provided</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>concepts</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>yang-common</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
60       <artifactId>rfc6991-ietf-inet-types</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
64       <artifactId>rfc6991-ietf-yang-types</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
68       <artifactId>rfc8525</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.netconf.model</groupId>
72       <artifactId>rfc5277</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.netconf.model</groupId>
76       <artifactId>rfc6022</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.netconf.model</groupId>
80       <artifactId>rfc6241</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.netconf.model</groupId>
84       <artifactId>rfc6470</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.netconf.model</groupId>
88       <artifactId>rfc7407-ietf-x509-cert-to-name</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.netconf</groupId>
92       <artifactId>netconf-api</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.netconf</groupId>
96       <artifactId>netconf-netty-util</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.netconf</groupId>
100       <artifactId>transport-api</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.opendaylight.netconf</groupId>
104       <artifactId>transport-tcp</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.netconf</groupId>
108       <artifactId>transport-tls</artifactId>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.netconf</groupId>
112       <artifactId>transport-ssh</artifactId>
113     </dependency>
114     <dependency>
115       <groupId>org.osgi</groupId>
116       <artifactId>org.osgi.service.component.annotations</artifactId>
117     </dependency>
118
119     <!-- Test dependencies -->
120     <dependency>
121       <groupId>io.netty</groupId>
122       <artifactId>netty-buffer</artifactId>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.yangtools</groupId>
127       <artifactId>mockito-configuration</artifactId>
128     </dependency>
129     <dependency>
130       <groupId>org.opendaylight.netconf</groupId>
131       <artifactId>netconf-client</artifactId>
132       <scope>test</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.opendaylight.netconf</groupId>
136       <artifactId>netconf-client</artifactId>
137       <type>test-jar</type>
138     </dependency>
139     <dependency>
140       <groupId>org.opendaylight.netconf</groupId>
141       <artifactId>netconf-test-util</artifactId>
142     </dependency>
143     <dependency>
144       <groupId>org.xmlunit</groupId>
145       <artifactId>xmlunit-core</artifactId>
146     </dependency>
147   </dependencies>
148 </project>