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.6.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.6.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.opendaylight.yangtools</groupId>
39           <artifactId>yang-test-util</artifactId>
40       </dependency>
41       <dependency>
42           <groupId>org.opendaylight.mdsal</groupId>
43           <artifactId>mdsal-binding-dom-adapter</artifactId>
44           <scope>test</scope>
45       </dependency>
46       <dependency>
47           <groupId>org.opendaylight.mdsal</groupId>
48           <artifactId>mdsal-binding-dom-adapter</artifactId>
49           <scope>test</scope>
50           <type>test-jar</type>
51       </dependency>
52       <dependency>
53           <groupId>org.awaitility</groupId>
54           <artifactId>awaitility</artifactId>
55           <scope>test</scope>
56       </dependency>
57   </dependencies>
58
59   <build>
60       <plugins>
61           <plugin>
62               <groupId>org.apache.felix</groupId>
63               <artifactId>maven-bundle-plugin</artifactId>
64               <extensions>true</extensions>
65               <configuration>
66                   <instructions>
67                       <Karaf-Commands>*</Karaf-Commands>
68                   </instructions>
69               </configuration>
70             </plugin>
71         </plugins>
72     </build>
73 </project>