Bump honeycomb version to 1.18.04-SNAPSHOT
[honeycomb.git] / infra / northbound / 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.04-SNAPSHOT</version>
25         <relativePath>../../../common/impl-parent</relativePath>
26     </parent>
27     <modelVersion>4.0.0</modelVersion>
28
29     <groupId>io.fd.honeycomb.northbound</groupId>
30     <artifactId>netconf</artifactId>
31     <version>1.18.04-SNAPSHOT</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         <!-- DI-->
41         <dependency>
42             <groupId>com.google.inject</groupId>
43             <artifactId>guice</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>net.jmob</groupId>
47             <artifactId>guice.conf</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>com.google.inject.extensions</groupId>
51             <artifactId>guice-multibindings</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>io.fd.honeycomb</groupId>
55             <artifactId>binding-init</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>io.fd.honeycomb</groupId>
60             <artifactId>minimal-distribution-core</artifactId>
61             <version>${project.version}</version>
62         </dependency>
63
64         <!-- Northbound -->
65         <dependency>
66             <groupId>io.fd.honeycomb.northbound</groupId>
67             <artifactId>common</artifactId>
68             <version>${project.version}</version>
69         </dependency>
70
71         <!-- ODL-Netconf -->
72         <dependency>
73             <groupId>org.opendaylight.netconf</groupId>
74             <artifactId>netconf-impl</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.netconf</groupId>
78             <artifactId>netconf-ssh</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.netconf</groupId>
82             <artifactId>mdsal-netconf-notification</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.netconf</groupId>
86             <artifactId>mdsal-netconf-monitoring</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.netconf</groupId>
90             <artifactId>mdsal-netconf-connector</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.netconf</groupId>
94             <artifactId>ietf-netconf-monitoring</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.netconf</groupId>
98             <artifactId>ietf-netconf-monitoring-extension</artifactId>
99         </dependency>
100
101         <dependency>
102             <groupId>io.fd.honeycomb</groupId>
103             <artifactId>data-impl</artifactId>
104             <version>${project.version}</version>
105         </dependency>
106         <dependency>
107             <groupId>io.fd.honeycomb</groupId>
108             <artifactId>honeycomb-impl</artifactId>
109             <version>${project.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>io.fd.honeycomb</groupId>
113             <artifactId>notification-impl</artifactId>
114             <version>${project.version}</version>
115         </dependency>
116     </dependencies>
117
118 </project>