Remove netconf-config
[netconf.git] / apps / netconf-nb / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Inocybe Technologies 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.0-SNAPSHOT</version>
16         <relativePath>../../parent</relativePath>
17     </parent>
18
19     <artifactId>netconf-nb</artifactId>
20     <name>${project.artifactId}</name>
21     <packaging>bundle</packaging>
22     <description>NETCONF Northbound</description>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.google.guava</groupId>
27             <artifactId>guava</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>io.netty</groupId>
31             <artifactId>netty-buffer</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>io.netty</groupId>
35             <artifactId>netty-common</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>io.netty</groupId>
39             <artifactId>netty-transport</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
43             <artifactId>rfc6991-ietf-inet-types</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.mdsal</groupId>
47             <artifactId>mdsal-binding-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.netconf</groupId>
51             <artifactId>netconf-api</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.netconf</groupId>
55             <artifactId>netconf-auth</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.netconf</groupId>
59             <artifactId>netconf-netty-util</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.netconf</groupId>
63             <artifactId>netconf-server</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.netconf</groupId>
67             <artifactId>netconf-server-mdsal</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.netconf</groupId>
71             <artifactId>shaded-sshd</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>com.guicedee.services</groupId>
75             <artifactId>javax.inject</artifactId>
76             <optional>true</optional>
77         </dependency>
78         <dependency>
79             <groupId>jakarta.annotation</groupId>
80             <artifactId>jakarta.annotation-api</artifactId>
81             <scope>provided</scope>
82             <optional>true</optional>
83         </dependency>
84         <dependency>
85             <groupId>org.osgi</groupId>
86             <artifactId>org.osgi.framework</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.osgi</groupId>
90             <artifactId>org.osgi.service.component</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.osgi</groupId>
94             <artifactId>org.osgi.service.component.annotations</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.osgi</groupId>
98             <artifactId>org.osgi.service.metatype.annotations</artifactId>
99         </dependency>
100
101         <dependency>
102             <groupId>io.netty</groupId>
103             <artifactId>netty-handler</artifactId>
104             <scope>test</scope>
105         </dependency>
106     </dependencies>
107 </project>