Update all pom.xml to be aligned with Oxygen
[transportpce.git] / features / odl-transportpce-cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange and others. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>single-feature-parent</artifactId>
15     <version>2.0.5</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>odl-transportpce-cli</artifactId>
21   <version>0.2.0-SNAPSHOT</version>
22   <packaging>feature</packaging>
23
24   <properties>
25     <mdsal.model.version>0.12.0-SNAPSHOT</mdsal.model.version>
26     <mdsal.version>1.7.0-SNAPSHOT</mdsal.version>
27     <restconf.version>1.7.0-SNAPSHOT</restconf.version>
28     <yangtools.version>1.3.0-SNAPSHOT</yangtools.version>
29     <dlux.version>0.7.0-SNAPSHOT</dlux.version>
30     <netconf.version>1.4.0-SNAPSHOT</netconf.version>
31     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
32   </properties>
33
34   <name>OpenDaylight :: transportpce :: CLI</name>
35
36   <dependencies>
37    <dependency>
38      <groupId>org.opendaylight.transportpce</groupId>
39      <artifactId>odl-transportpce</artifactId>
40      <version>${project.version}</version>
41      <classifier>features</classifier>
42      <type>xml</type>
43    </dependency>
44    <dependency>
45       <groupId>${project.groupId}</groupId>
46       <artifactId>transportpce-cli</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49   </dependencies>
50
51   <build>
52      <plugins>
53      <plugin>
54        <groupId>org.apache.felix</groupId>
55        <artifactId>maven-bundle-plugin</artifactId>
56        <extensions>true</extensions>
57        <configuration>
58          <instructions>
59            <!-- This bundle works with Karaf 3 and 4.0, see https://wiki.opendaylight.org/view/Karaf_4_migration#Karaf_CLI_commands -->
60            <Import-Package>
61              org.apache.karaf.shell.commands;version="[3.0.0,4.1)",
62              org.apache.karaf.shell.console;version="[3.0.0,4.1)",
63              *
64            </Import-Package>
65          </instructions>
66        </configuration>
67      </plugin>
68    </plugins>
69   </build>
70 </project>