Rework poms
[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.9.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.apache.karaf.shell</groupId>
34             <artifactId>org.apache.karaf.shell.console</artifactId>
35             <scope>provided</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.apache.karaf.shell</groupId>
39             <artifactId>org.apache.karaf.shell.table</artifactId>
40             <version>${karaf.version}</version>
41             <scope>provided</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.apache.karaf.shell</groupId>
45             <artifactId>org.apache.karaf.shell.commands</artifactId>
46             <version>${karaf.version}</version>
47             <scope>provided</scope>
48         </dependency>
49         <!--Test dependencies-->
50         <dependency>
51             <groupId>junit</groupId>
52             <artifactId>junit</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.mockito</groupId>
56             <artifactId>mockito-core</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>commons-io</groupId>
61             <artifactId>commons-io</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-binding-broker-impl</artifactId>
67             <scope>test</scope>
68             <type>test-jar</type>
69         </dependency>
70     </dependencies>
71
72     <scm>
73         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
74         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
75         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
76         <tag>HEAD</tag>
77     </scm>
78 </project>