89ea9f3f354b7df3d3cf1bad9e6fdc573efa2d9e
[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.9.0-SNAPSHOT</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-console</artifactId>
20   <version>1.9.0-SNAPSHOT</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
32       <!-- Project Dependencies -->
33       <dependency>
34           <groupId>org.opendaylight.netconf</groupId>
35           <artifactId>sal-netconf-connector</artifactId>
36       </dependency>
37       <dependency>
38           <groupId>org.opendaylight.yangtools</groupId>
39           <artifactId>yang-test-util</artifactId>
40       </dependency>
41       <dependency>
42           <groupId>org.opendaylight.mdsal</groupId>
43           <artifactId>mdsal-binding-test-utils</artifactId>
44       </dependency>
45       <dependency>
46           <groupId>org.awaitility</groupId>
47           <artifactId>awaitility</artifactId>
48           <scope>test</scope>
49       </dependency>
50   </dependencies>
51
52   <build>
53       <plugins>
54           <plugin>
55               <groupId>org.apache.felix</groupId>
56               <artifactId>maven-bundle-plugin</artifactId>
57               <extensions>true</extensions>
58               <configuration>
59                   <instructions>
60                       <Karaf-Commands>*</Karaf-Commands>
61                   </instructions>
62               </configuration>
63             </plugin>
64         </plugins>
65     </build>
66 </project>