Remove no longer required karaf.shell imports
[bgpcep.git] / bgp / cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Inocybe Technologies.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13
14     <modelVersion>4.0.0</modelVersion>
15     <parent>
16         <groupId>org.opendaylight.bgpcep</groupId>
17         <artifactId>bgpcep-parent</artifactId>
18         <version>0.10.0-SNAPSHOT</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>bgp-cli</artifactId>
23     <description>BGP CLI</description>
24     <packaging>bundle</packaging>
25     <name>${project.artifactId}</name>
26
27     <dependencies>
28         <dependency>
29             <groupId>${project.groupId}</groupId>
30             <artifactId>bgp-openconfig-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-binding-api</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.apache.karaf.shell</groupId>
38             <artifactId>org.apache.karaf.shell.console</artifactId>
39             <scope>provided</scope>
40         </dependency>
41         <!--Test dependencies-->
42         <dependency>
43             <groupId>junit</groupId>
44             <artifactId>junit</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.mockito</groupId>
48             <artifactId>mockito-core</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>commons-io</groupId>
53             <artifactId>commons-io</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>sal-binding-broker-impl</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-binding-broker-impl</artifactId>
64             <scope>test</scope>
65             <type>test-jar</type>
66         </dependency>
67     </dependencies>
68
69     <build>
70         <plugins>
71             <plugin>
72                 <groupId>org.apache.felix</groupId>
73                 <artifactId>maven-bundle-plugin</artifactId>
74                 <extensions>true</extensions>
75                 <configuration>
76                     <instructions>
77                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
78                         <Karaf-Commands>*</Karaf-Commands>
79                     </instructions>
80                 </configuration>
81             </plugin>
82         </plugins>
83     </build>
84
85     <scm>
86         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
87         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
88         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
89         <tag>HEAD</tag>
90     </scm>
91 </project>