Bump versions by x.y.(z+1)
[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.5.4-SNAPSHOT</version>
15     <relativePath>../netconf-parent</relativePath>
16   </parent>
17
18   <groupId>org.opendaylight.netconf</groupId>
19   <artifactId>netconf-console</artifactId>
20   <version>1.5.4-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.mockito</groupId>
39           <artifactId>mockito-core</artifactId>
40           <scope>test</scope>
41       </dependency>
42       <dependency>
43           <groupId>org.opendaylight.yangtools</groupId>
44           <artifactId>yang-test-util</artifactId>
45       </dependency>
46       <dependency>
47           <groupId>org.opendaylight.controller</groupId>
48           <artifactId>sal-binding-broker-impl</artifactId>
49           <scope>test</scope>
50       </dependency>
51       <dependency>
52           <groupId>org.opendaylight.controller</groupId>
53           <artifactId>sal-binding-broker-impl</artifactId>
54           <scope>test</scope>
55           <type>test-jar</type>
56       </dependency>
57       <dependency>
58           <groupId>org.awaitility</groupId>
59           <artifactId>awaitility</artifactId>
60           <scope>test</scope>
61       </dependency>
62   </dependencies>
63
64   <build>
65       <plugins>
66           <plugin>
67               <groupId>org.apache.felix</groupId>
68               <artifactId>maven-bundle-plugin</artifactId>
69               <extensions>true</extensions>
70               <configuration>
71                   <instructions>
72                       <Karaf-Commands>*</Karaf-Commands>
73                   </instructions>
74               </configuration>
75             </plugin>
76         </plugins>
77     </build>
78 </project>