Add Honeynode emulator for device221
[transportpce.git] / tests / honeynode221 / netconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (c) 2017 Cisco and/or its affiliates.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at:
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17
18 <project xmlns="http://maven.apache.org/POM/4.0.0"
19          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21     <parent>
22         <artifactId>impl-parent</artifactId>
23         <groupId>io.fd.honeycomb.common</groupId>
24         <version>1.18.01</version>
25         <relativePath/>
26     </parent>
27     <modelVersion>4.0.0</modelVersion>
28
29     <groupId>io.fd.honeycomb.transportpce</groupId>
30     <artifactId>netconf</artifactId>
31     <version>1.18.01</version>
32
33     <properties>
34         <yang.modules.whitelist>
35             ${project.basedir}/src/main/resources/honeycomb-minimal-resources/config/netconf-whitelist.xml
36         </yang.modules.whitelist>
37     </properties>
38
39     <dependencies>
40         <!-- TPCE dependencies  -->
41         <dependency>
42             <groupId>io.fd.honeycomb.transportpce</groupId>
43             <artifactId>honeynode-plugin-impl</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>io.fd.honeycomb.transportpce</groupId>
48             <artifactId>minimal-distribution-core</artifactId>
49             <version>${project.version}</version>
50         </dependency>
51         <!-- DI-->
52         <dependency>
53             <groupId>com.google.inject</groupId>
54             <artifactId>guice</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>net.jmob</groupId>
58             <artifactId>guice.conf</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>com.google.inject.extensions</groupId>
62             <artifactId>guice-multibindings</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>io.fd.honeycomb</groupId>
66             <artifactId>binding-init</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <!-- Northbound -->
70         <dependency>
71             <groupId>io.fd.honeycomb.northbound</groupId>
72             <artifactId>common</artifactId>
73             <version>${project.version}</version>
74         </dependency>
75
76         <!-- ODL-Netconf -->
77         <dependency>
78             <groupId>org.opendaylight.netconf</groupId>
79             <artifactId>netconf-impl</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>org.opendaylight.netconf</groupId>
83             <artifactId>netconf-ssh</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.netconf</groupId>
87             <artifactId>mdsal-netconf-notification</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.netconf</groupId>
91             <artifactId>mdsal-netconf-monitoring</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.netconf</groupId>
95             <artifactId>mdsal-netconf-connector</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.opendaylight.netconf</groupId>
99             <artifactId>ietf-netconf-monitoring</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.netconf</groupId>
103             <artifactId>ietf-netconf-monitoring-extension</artifactId>
104         </dependency>
105
106         <dependency>
107             <groupId>io.fd.honeycomb</groupId>
108             <artifactId>data-impl</artifactId>
109             <version>${project.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>io.fd.honeycomb</groupId>
113             <artifactId>honeycomb-impl</artifactId>
114             <version>${project.version}</version>
115         </dependency>
116         <dependency>
117             <groupId>io.fd.honeycomb</groupId>
118             <artifactId>notification-impl</artifactId>
119             <version>${project.version}</version>
120         </dependency>
121     </dependencies>
122
123 </project>