Remove the option to deliver streams over WebSockets
[netconf.git] / apps / netconf-console / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2016 Inocybe Technologies. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.netconf</groupId>
13     <artifactId>netconf-parent</artifactId>
14     <version>8.0.0-SNAPSHOT</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <artifactId>netconf-console</artifactId>
19   <name>${project.artifactId}</name>
20   <packaging>bundle</packaging>
21
22   <dependencies>
23       <dependency>
24           <groupId>com.google.guava</groupId>
25           <artifactId>guava</artifactId>
26       </dependency>
27       <dependency>
28           <groupId>com.guicedee.services</groupId>
29           <artifactId>javax.inject</artifactId>
30           <optional>true</optional>
31       </dependency>
32       <dependency>
33           <groupId>org.apache.karaf.shell</groupId>
34           <artifactId>org.apache.karaf.shell.core</artifactId>
35           <scope>provided</scope>
36       </dependency>
37       <dependency>
38           <groupId>org.eclipse.jdt</groupId>
39           <artifactId>org.eclipse.jdt.annotation</artifactId>
40       </dependency>
41       <dependency>
42           <groupId>org.opendaylight.yangtools</groupId>
43           <artifactId>yang-common</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.mdsal</groupId>
51           <artifactId>mdsal-common-api</artifactId>
52       </dependency>
53       <dependency>
54           <groupId>org.opendaylight.mdsal</groupId>
55           <artifactId>yang-binding</artifactId>
56       </dependency>
57       <dependency>
58           <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
59           <artifactId>rfc6991-ietf-inet-types</artifactId>
60       </dependency>
61       <dependency>
62           <groupId>org.opendaylight.mdsal.model</groupId>
63           <artifactId>ietf-topology</artifactId>
64       </dependency>
65       <dependency>
66           <groupId>org.opendaylight.netconf</groupId>
67           <artifactId>netconf-topology</artifactId>
68       </dependency>
69       <dependency>
70           <groupId>org.opendaylight.netconf</groupId>
71           <artifactId>netconf-client-mdsal</artifactId>
72       </dependency>
73       <dependency>
74           <groupId>org.osgi</groupId>
75           <artifactId>org.osgi.service.component.annotations</artifactId>
76       </dependency>
77
78       <dependency>
79           <groupId>org.opendaylight.yangtools</groupId>
80           <artifactId>yang-test-util</artifactId>
81       </dependency>
82       <dependency>
83           <groupId>org.opendaylight.mdsal</groupId>
84           <artifactId>mdsal-binding-dom-adapter</artifactId>
85           <type>test-jar</type>
86       </dependency>
87       <dependency>
88           <groupId>org.opendaylight.mdsal</groupId>
89           <artifactId>mdsal-binding-runtime-api</artifactId>
90           <scope>test</scope>
91       </dependency>
92       <dependency>
93           <groupId>org.opendaylight.mdsal</groupId>
94           <artifactId>mdsal-binding-runtime-spi</artifactId>
95           <scope>test</scope>
96       </dependency>
97       <dependency>
98           <groupId>org.opendaylight.mdsal</groupId>
99           <artifactId>mdsal-binding-test-utils</artifactId>
100       </dependency>
101       <dependency>
102           <groupId>org.awaitility</groupId>
103           <artifactId>awaitility</artifactId>
104       </dependency>
105   </dependencies>
106
107   <build>
108       <plugins>
109           <plugin>
110               <groupId>org.apache.felix</groupId>
111               <artifactId>maven-bundle-plugin</artifactId>
112               <extensions>true</extensions>
113               <configuration>
114                   <instructions>
115                       <Karaf-Commands>*</Karaf-Commands>
116                   </instructions>
117               </configuration>
118             </plugin>
119         </plugins>
120     </build>
121 </project>