Release netconf
[netconf.git] / netconf / 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>1.13.4</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-console</artifactId>
20   <version>1.13.4</version>
21   <name>${project.artifactId}</name>
22   <packaging>bundle</packaging>
23
24   <dependencies>
25       <!-- Apache Karaf console dependency -->
26       <dependency>
27           <groupId>org.apache.karaf.shell</groupId>
28           <artifactId>org.apache.karaf.shell.console</artifactId>
29           <scope>provided</scope>
30       </dependency>
31       <dependency>
32           <groupId>org.opendaylight.netconf</groupId>
33           <artifactId>sal-netconf-connector</artifactId>
34       </dependency>
35
36       <dependency>
37           <groupId>org.opendaylight.yangtools</groupId>
38           <artifactId>yang-test-util</artifactId>
39       </dependency>
40       <dependency>
41           <groupId>org.opendaylight.mdsal</groupId>
42           <artifactId>mdsal-binding-test-utils</artifactId>
43       </dependency>
44       <dependency>
45           <groupId>org.awaitility</groupId>
46           <artifactId>awaitility</artifactId>
47       </dependency>
48   </dependencies>
49
50   <build>
51       <plugins>
52           <plugin>
53               <groupId>org.apache.felix</groupId>
54               <artifactId>maven-bundle-plugin</artifactId>
55               <extensions>true</extensions>
56               <configuration>
57                   <instructions>
58                       <Karaf-Commands>*</Karaf-Commands>
59                   </instructions>
60               </configuration>
61             </plugin>
62         </plugins>
63     </build>
64 </project>