Bump versions by x.(y+1).z for next dev cycle
[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         <dependency>
42             <groupId>org.apache.karaf.shell</groupId>
43             <artifactId>org.apache.karaf.shell.table</artifactId>
44             <version>${karaf.version}</version>
45             <scope>provided</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.apache.karaf.shell</groupId>
49             <artifactId>org.apache.karaf.shell.commands</artifactId>
50             <version>${karaf.version}</version>
51             <scope>provided</scope>
52         </dependency>
53         <!--Test dependencies-->
54         <dependency>
55             <groupId>junit</groupId>
56             <artifactId>junit</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.mockito</groupId>
60             <artifactId>mockito-core</artifactId>
61             <scope>test</scope>
62         </dependency>
63         <dependency>
64             <groupId>commons-io</groupId>
65             <artifactId>commons-io</artifactId>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.controller</groupId>
70             <artifactId>sal-binding-broker-impl</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>sal-binding-broker-impl</artifactId>
76             <scope>test</scope>
77             <type>test-jar</type>
78         </dependency>
79     </dependencies>
80
81     <scm>
82         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
83         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
84         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
85         <tag>HEAD</tag>
86     </scm>
87 </project>