Bump versions to 4.0.0-SNAPSHOT
[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>4.0.0-SNAPSHOT</version>
15     <relativePath>../../parent</relativePath>
16   </parent>
17
18   <artifactId>netconf-console</artifactId>
19   <name>${project.artifactId}</name>
20   <packaging>bundle</packaging>
21
22   <dependencies>
23       <!-- Apache Karaf console dependency -->
24       <dependency>
25           <groupId>org.apache.karaf.shell</groupId>
26           <artifactId>org.apache.karaf.shell.console</artifactId>
27           <scope>provided</scope>
28       </dependency>
29       <dependency>
30           <groupId>org.opendaylight.netconf</groupId>
31           <artifactId>sal-netconf-connector</artifactId>
32       </dependency>
33       <dependency>
34           <groupId>com.guicedee.services</groupId>
35           <artifactId>javax.inject</artifactId>
36           <optional>true</optional>
37       </dependency>
38       <dependency>
39           <groupId>org.osgi</groupId>
40           <artifactId>org.osgi.service.component.annotations</artifactId>
41       </dependency>
42
43       <dependency>
44           <groupId>org.opendaylight.yangtools</groupId>
45           <artifactId>yang-test-util</artifactId>
46       </dependency>
47       <dependency>
48           <groupId>org.opendaylight.mdsal</groupId>
49           <artifactId>mdsal-binding-test-utils</artifactId>
50       </dependency>
51       <dependency>
52           <groupId>org.awaitility</groupId>
53           <artifactId>awaitility</artifactId>
54       </dependency>
55   </dependencies>
56
57   <build>
58       <plugins>
59           <plugin>
60               <groupId>org.apache.felix</groupId>
61               <artifactId>maven-bundle-plugin</artifactId>
62               <extensions>true</extensions>
63               <configuration>
64                   <instructions>
65                       <Karaf-Commands>*</Karaf-Commands>
66                   </instructions>
67               </configuration>
68             </plugin>
69         </plugins>
70     </build>
71 </project>