Remove superfluous version/groupId declarations
[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>2.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
34       <dependency>
35           <groupId>org.opendaylight.yangtools</groupId>
36           <artifactId>yang-test-util</artifactId>
37       </dependency>
38       <dependency>
39           <groupId>org.opendaylight.mdsal</groupId>
40           <artifactId>mdsal-binding-test-utils</artifactId>
41       </dependency>
42       <dependency>
43           <groupId>org.awaitility</groupId>
44           <artifactId>awaitility</artifactId>
45       </dependency>
46   </dependencies>
47
48   <build>
49       <plugins>
50           <plugin>
51               <groupId>org.apache.felix</groupId>
52               <artifactId>maven-bundle-plugin</artifactId>
53               <extensions>true</extensions>
54               <configuration>
55                   <instructions>
56                       <Karaf-Commands>*</Karaf-Commands>
57                   </instructions>
58               </configuration>
59             </plugin>
60         </plugins>
61     </build>
62 </project>